@redneckz/wildless-cms-uni-blocks 0.14.105 → 0.14.106
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 +90 -88
- package/bundle/bundle.umd.min.js +1 -1
- package/bundle/components/Calculator/CalculatorFormLayout.d.ts +8 -0
- package/dist/components/Calculator/BusinessDepositCalculatorForm.js +24 -24
- package/dist/components/Calculator/BusinessDepositCalculatorForm.js.map +1 -1
- package/dist/components/Calculator/CalculatorFormLayout.d.ts +8 -0
- package/dist/components/Calculator/CalculatorFormLayout.js +7 -0
- package/dist/components/Calculator/CalculatorFormLayout.js.map +1 -0
- package/dist/components/Calculator/CreditCalculatorForm.js +17 -17
- package/dist/components/Calculator/CreditCalculatorForm.js.map +1 -1
- package/dist/components/Calculator/DepositCalculatorForm.js +17 -17
- package/dist/components/Calculator/DepositCalculatorForm.js.map +1 -1
- package/dist/components/Calculator/RefinancingCalculatorForm.js +33 -33
- package/dist/components/Calculator/RefinancingCalculatorForm.js.map +1 -1
- package/lib/common.css +1 -1
- package/lib/components/Calculator/BusinessDepositCalculatorForm.js +24 -24
- package/lib/components/Calculator/BusinessDepositCalculatorForm.js.map +1 -1
- package/lib/components/Calculator/CalculatorFormLayout.d.ts +8 -0
- package/lib/components/Calculator/CalculatorFormLayout.js +5 -0
- package/lib/components/Calculator/CalculatorFormLayout.js.map +1 -0
- package/lib/components/Calculator/CreditCalculatorForm.js +17 -17
- package/lib/components/Calculator/CreditCalculatorForm.js.map +1 -1
- package/lib/components/Calculator/DepositCalculatorForm.js +17 -17
- package/lib/components/Calculator/DepositCalculatorForm.js.map +1 -1
- package/lib/components/Calculator/RefinancingCalculatorForm.js +33 -33
- package/lib/components/Calculator/RefinancingCalculatorForm.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +90 -88
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/bundle/components/Calculator/CalculatorFormLayout.d.ts +8 -0
- package/mobile/dist/components/Calculator/BusinessDepositCalculatorForm.js +24 -24
- package/mobile/dist/components/Calculator/BusinessDepositCalculatorForm.js.map +1 -1
- package/mobile/dist/components/Calculator/CalculatorFormLayout.d.ts +8 -0
- package/mobile/dist/components/Calculator/CalculatorFormLayout.js +7 -0
- package/mobile/dist/components/Calculator/CalculatorFormLayout.js.map +1 -0
- package/mobile/dist/components/Calculator/CreditCalculatorForm.js +17 -17
- package/mobile/dist/components/Calculator/CreditCalculatorForm.js.map +1 -1
- package/mobile/dist/components/Calculator/DepositCalculatorForm.js +17 -17
- package/mobile/dist/components/Calculator/DepositCalculatorForm.js.map +1 -1
- package/mobile/dist/components/Calculator/RefinancingCalculatorForm.js +33 -33
- package/mobile/dist/components/Calculator/RefinancingCalculatorForm.js.map +1 -1
- package/mobile/lib/common.css +1 -1
- package/mobile/lib/components/Calculator/BusinessDepositCalculatorForm.js +24 -24
- package/mobile/lib/components/Calculator/BusinessDepositCalculatorForm.js.map +1 -1
- package/mobile/lib/components/Calculator/CalculatorFormLayout.d.ts +8 -0
- package/mobile/lib/components/Calculator/CalculatorFormLayout.js +5 -0
- package/mobile/lib/components/Calculator/CalculatorFormLayout.js.map +1 -0
- package/mobile/lib/components/Calculator/CreditCalculatorForm.js +17 -17
- package/mobile/lib/components/Calculator/CreditCalculatorForm.js.map +1 -1
- package/mobile/lib/components/Calculator/DepositCalculatorForm.js +17 -17
- package/mobile/lib/components/Calculator/DepositCalculatorForm.js.map +1 -1
- package/mobile/lib/components/Calculator/RefinancingCalculatorForm.js +33 -33
- package/mobile/lib/components/Calculator/RefinancingCalculatorForm.js.map +1 -1
- package/mobile/src/components/Calculator/BusinessDepositCalculatorForm.tsx +38 -34
- package/mobile/src/components/Calculator/CalculatorFormLayout.tsx +22 -0
- package/mobile/src/components/Calculator/CreditCalculatorForm.tsx +38 -34
- package/mobile/src/components/Calculator/DepositCalculatorForm.tsx +38 -29
- package/mobile/src/components/Calculator/RefinancingCalculatorForm.tsx +61 -56
- package/package.json +1 -1
- package/src/components/Calculator/BusinessDepositCalculatorForm.tsx +38 -34
- package/src/components/Calculator/CalculatorFormLayout.tsx +22 -0
- package/src/components/Calculator/CreditCalculatorForm.tsx +38 -34
- package/src/components/Calculator/DepositCalculatorForm.tsx +38 -29
- package/src/components/Calculator/RefinancingCalculatorForm.tsx +61 -56
package/bundle/bundle.umd.js
CHANGED
|
@@ -2022,6 +2022,8 @@
|
|
|
2022
2022
|
: null, jsxs("div", { className: "flex flex-col gap-y-4xl @xl:w-96", children: [yearBonus >= 0 ? jsx(CalculatorValueBlock, { title: "\u0411\u0430\u043B\u043B\u043E\u0432 \u0437\u0430 \u0433\u043E\u0434", value: yearBonus }) : null, renderButtonsSection(buttons, { isVertical: true }), renderFootnote(footnote)] })] }));
|
|
2023
2023
|
});
|
|
2024
2024
|
|
|
2025
|
+
const CalculatorFormLayout = JSX(({ className, inputChildren, rateChildren, resultChildren }) => (jsxs("section", { className: style('flex flex-col justify-between @5xl:flex-row gap-m', className), children: [jsx("div", { className: "flex flex-col gap-y-m sm:max-w-md gap-2xl", children: inputChildren }), jsx("div", { className: "border-b border-main-divider md:hidden" }), rateChildren, jsx("div", { className: "flex flex-col gap-2xl sm:w-96 max-w-full", children: resultChildren })] })));
|
|
2026
|
+
|
|
2025
2027
|
const getMoneyDefaultValue = (defaultParams, defaultMoney = 0) => defaultParams?.sum && defaultParams.sum >= DEFAULT_MIN_SUM$1 && defaultParams.sum <= DEFAULT_MAX_SUM$1
|
|
2026
2028
|
? defaultParams.sum
|
|
2027
2029
|
: defaultMoney;
|
|
@@ -2133,29 +2135,29 @@
|
|
|
2133
2135
|
});
|
|
2134
2136
|
const calculatorParams = useBusinessDepositCalculatorParams(userInputParams, rateParams?.rateType && rateParams.sourceBookDir);
|
|
2135
2137
|
const { income, finalSum, rate, isUnavailableByTerm, depositeName } = calculatorParams;
|
|
2136
|
-
return (
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2138
|
+
return (jsx(CalculatorFormLayout, { className: className, inputChildren: jsxs("div", { children: [renderWantedSumInput({
|
|
2139
|
+
title: 'Сумма, ₽',
|
|
2140
|
+
min: calculatorParams.minSum,
|
|
2141
|
+
max: calculatorParams.maxSum,
|
|
2142
|
+
...field('moneyValue'),
|
|
2143
|
+
value: calculatorParams.moneyValue,
|
|
2144
|
+
}), renderDaysInput({
|
|
2145
|
+
title: 'Срок, дней',
|
|
2146
|
+
min: calculatorParams.minDays,
|
|
2147
|
+
max: calculatorParams.maxDays,
|
|
2148
|
+
...field('daysValue'),
|
|
2149
|
+
value: calculatorParams.daysValue,
|
|
2150
|
+
}), jsxs("div", { className: "flex flex-col sm:flex-row gap-y-4 gap-x-14", children: [renderBusinessDepositParamsForm(calculatorParams, field), renderInterestPayment({
|
|
2151
|
+
title: 'Выплата процентов',
|
|
2152
|
+
orientation: 'vertical',
|
|
2153
|
+
...field('isMonthlyInterestPayment'),
|
|
2154
|
+
radioGroupClassName: 'sm:flex-col',
|
|
2155
|
+
})] })] }), rateChildren: renderRate({
|
|
2156
|
+
rate,
|
|
2157
|
+
depositeName,
|
|
2158
|
+
isShowDepositeName,
|
|
2159
|
+
isUnavailableByTerm,
|
|
2160
|
+
}), resultChildren: jsxs("div", { children: [renderDepositResults(finalSum, income), renderButtonsSection(buttons, { isVertical: true }), renderFootnote(footnote), renderFootnote(bottomFootnote)] }) }));
|
|
2159
2161
|
});
|
|
2160
2162
|
const renderBusinessDepositParamsForm = (calculatorParams, field) => (jsxs("div", { className: "space-y-s", children: [jsx(Text, { color: "text-secondary-text", font: "font-light", children: "\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u044B" }), jsxs("div", { className: "flex flex-col gap-y-xl sm:gap-y-s", children: [jsx(Checkbox, { text: "\u041F\u043E\u043F\u043E\u043B\u043D\u0435\u043D\u0438\u0435", disabled: calculatorParams.isDisabledOperatingDeposit, ...field('isReplenished'), value: calculatorParams.isReplenished }), jsx(Checkbox, { disabled: calculatorParams.isDisabledOperatingDeposit, text: "\u0427\u0430\u0441\u0442\u0438\u0447\u043D\u043E\u0435 \u0441\u043D\u044F\u0442\u0438\u0435", ...field('isPartialWithdrawal'), value: calculatorParams.isPartialWithdrawal })] })] }));
|
|
2161
2163
|
const renderDepositResults = (finalSum, income) => (jsxs("div", { className: "flex flex-col gap-2xl sm:gap-0", children: [jsx(CalculatorValueBlock, { title: "\u0414\u043E\u0445\u043E\u0434 \u0432 \u043A\u043E\u043D\u0446\u0435 \u0441\u0440\u043E\u043A\u0430", value: income, postfix: "\u20BD", prefix: "+" }), jsx(CalculatorValueBlock, { title: "\u0421\u0443\u043C\u043C\u0430 \u0432 \u043A\u043E\u043D\u0446\u0435 \u0441\u0440\u043E\u043A\u0430", value: finalSum, postfix: "\u20BD" })] }));
|
|
@@ -2286,22 +2288,22 @@
|
|
|
2286
2288
|
orientation: 'vertical',
|
|
2287
2289
|
...field('isAnnuity'),
|
|
2288
2290
|
});
|
|
2289
|
-
return (
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2291
|
+
return (jsx(CalculatorFormLayout, { className: className, inputChildren: jsxs("div", { children: [renderWantedSumInput({
|
|
2292
|
+
title: 'Сумма кредита, ₽',
|
|
2293
|
+
step: 500,
|
|
2294
|
+
min: calculatorParams.minSum,
|
|
2295
|
+
max: calculatorParams.maxSum,
|
|
2296
|
+
...field('moneyValue'),
|
|
2297
|
+
value: calculatorParams.moneyValue,
|
|
2298
|
+
}), renderMonthsInput({
|
|
2299
|
+
title: 'Срок кредита, месяцев',
|
|
2300
|
+
min: calculatorParams.minMonths,
|
|
2301
|
+
max: calculatorParams.maxMonths,
|
|
2302
|
+
...field('monthsValue'),
|
|
2303
|
+
value: calculatorParams.monthsValue,
|
|
2304
|
+
}), renderCreditParamsForm$1({ ...calculatorParams, ...paramsViewSettings }, field), jsx("div", { className: "sm:hidden", children: paymentTypeElement })] }), rateChildren: renderRate({
|
|
2305
|
+
rate: calculatorParams.rate,
|
|
2306
|
+
}), resultChildren: jsxs("div", { children: [jsx(CalculatorValueBlock, { title: "\u0415\u0436\u0435\u043C\u0435\u0441\u044F\u0447\u043D\u044B\u0439 \u043F\u043B\u0430\u0442\u0451\u0436", value: calculatorParams.monthlyPayment, postfix: "\u20BD" }), jsx("div", { className: "hidden sm:block", children: paymentTypeElement }), renderButtonsSection(buttons, { isVertical: true }), renderFootnote(footnote)] }) }));
|
|
2305
2307
|
});
|
|
2306
2308
|
const renderCreditParamsForm$1 = (params, field) => (jsxs("div", { className: "flex flex-col gap-y-2xl", children: [params.isShowSalaryClient ? (jsx(Checkbox, { text: `Получаю зарплату на счёт\nв Россельхозбанке`, ...field('isSalaryClient'), value: params.isSalaryClient, className: "whitespace-pre-line sm:whitespace-normal" })) : null, params.isShowStateEmployee ? (jsx(Checkbox, { text: "\u0420\u0430\u0431\u043E\u0442\u0430\u044E \u0432 \u0431\u044E\u0434\u0436\u0435\u0442\u043D\u043E\u0439 \u043E\u0440\u0433\u0430\u043D\u0438\u0437\u0430\u0446\u0438\u0438", ...field('isStateEmployee'), value: params.isStateEmployee })) : null, params.isShowPensionClient ? (jsx(Checkbox, { text: "\u041F\u043E\u043B\u0443\u0447\u0430\u044E \u043F\u0435\u043D\u0441\u0438\u044E \u043D\u0430 \u043A\u0430\u0440\u0442\u0443 \u0420\u043E\u0441\u0441\u0435\u043B\u044C\u0445\u043E\u0437\u0431\u0430\u043D\u043A\u0430", ...field('isPensionClient'), value: params.isPensionClient })) : null, params.isShowInsurance ? (jsx(Checkbox, { text: "\u041A\u043E\u043C\u043F\u043B\u0435\u043A\u0441\u043D\u0430\u044F \u0441\u0442\u0440\u0430\u0445\u043E\u0432\u0430\u044F \u0437\u0430\u0449\u0438\u0442\u0430", ...field('isInsurance'), value: params.isInsurance })) : null] }));
|
|
2307
2309
|
|
|
@@ -2397,22 +2399,22 @@
|
|
|
2397
2399
|
useEffect(() => {
|
|
2398
2400
|
!userInputParams.monthsValue && setMonthsValue && setMonthsValue(defaultMonth);
|
|
2399
2401
|
}, [defaultMonth]);
|
|
2400
|
-
return (
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2402
|
+
return (jsx(CalculatorFormLayout, { className: className, inputChildren: jsxs("div", { children: [renderWantedSumInput({
|
|
2403
|
+
title: 'Сумма, ₽',
|
|
2404
|
+
min: calculatorParams.minSum,
|
|
2405
|
+
max: calculatorParams.maxSum,
|
|
2406
|
+
...field('moneyValue'),
|
|
2407
|
+
value: calculatorParams.moneyValue,
|
|
2408
|
+
}), renderMonthsInput({
|
|
2409
|
+
title: 'Срок, месяцев',
|
|
2410
|
+
min: calculatorParams.minMonths,
|
|
2411
|
+
max: calculatorParams.maxMonths,
|
|
2412
|
+
availableMonths: calculatorParams.availableMonths,
|
|
2413
|
+
...field('monthsValue'),
|
|
2414
|
+
value: calculatorParams.monthsValue,
|
|
2415
|
+
}), renderDepositParamsForm({ ...calculatorParams, ...paramsViewSettings }, field)] }), rateChildren: renderRate({
|
|
2416
|
+
rate,
|
|
2417
|
+
}), resultChildren: jsxs("div", { children: [jsx(CalculatorValueBlock, { title: "\u0414\u043E\u0445\u043E\u0434 \u0432 \u043A\u043E\u043D\u0446\u0435 \u0441\u0440\u043E\u043A\u0430", value: income, postfix: "\u20BD", prefix: "+" }), jsx(CalculatorValueBlock, { title: "\u0421\u0443\u043C\u043C\u0430 \u0432 \u043A\u043E\u043D\u0446\u0435 \u0441\u0440\u043E\u043A\u0430", value: finalSum, postfix: "\u20BD" }), renderButtonsSection(buttons, { isVertical: true }), renderFootnote(footnote)] }) }));
|
|
2416
2418
|
});
|
|
2417
2419
|
const renderDepositParamsForm = (params, field) => (jsxs("div", { className: "flex flex-col gap-y-2xl", children: [params.isShowMonthlyInterestPayment
|
|
2418
2420
|
? renderInterestPayment({
|
|
@@ -2517,39 +2519,39 @@
|
|
|
2517
2519
|
orientation: 'vertical',
|
|
2518
2520
|
...field('isAnnuity'),
|
|
2519
2521
|
});
|
|
2520
|
-
return (
|
|
2521
|
-
|
|
2522
|
+
return (jsx(CalculatorFormLayout, { className: className, inputChildren: jsxs("div", { children: [renderWantedSumInput({
|
|
2523
|
+
title: 'Остаток долга в других банках, ₽ ',
|
|
2524
|
+
step: 500,
|
|
2525
|
+
min: calculatorParams.minSum,
|
|
2526
|
+
max: calculatorParams.maxSum - calculatorParams.maxSumExtra,
|
|
2527
|
+
...field('moneyValue'),
|
|
2528
|
+
value: calculatorParams.moneyValue,
|
|
2529
|
+
}), renderWantedSumInput({
|
|
2530
|
+
title: 'Ежемесячный платёж в других банках, ₽',
|
|
2531
|
+
step: 500,
|
|
2532
|
+
min: calculatorParams.minSumOld,
|
|
2533
|
+
max: calculatorParams.maxSumOld,
|
|
2534
|
+
...field('oldMonthlyPayment'),
|
|
2535
|
+
value: calculatorParams.oldMonthlyPayment,
|
|
2536
|
+
}), renderMonthsInput({
|
|
2537
|
+
title: 'Новый срок кредита, месяцев',
|
|
2538
|
+
min: calculatorParams.minMonths,
|
|
2539
|
+
max: calculatorParams.maxMonths,
|
|
2540
|
+
...field('monthsValue'),
|
|
2541
|
+
value: calculatorParams.monthsValue,
|
|
2542
|
+
}), renderCreditParamsForm({ ...calculatorParams, ...paramsViewSettings }, field), calculatorParams.isExtraMoney
|
|
2543
|
+
? renderWantedSumInput({
|
|
2544
|
+
title: 'Дополнительная сумма, ₽ ',
|
|
2522
2545
|
step: 500,
|
|
2523
|
-
min: calculatorParams.
|
|
2524
|
-
max: calculatorParams.
|
|
2525
|
-
...field('
|
|
2526
|
-
value: calculatorParams.
|
|
2527
|
-
})
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
...field('oldMonthlyPayment'),
|
|
2533
|
-
value: calculatorParams.oldMonthlyPayment,
|
|
2534
|
-
}), renderMonthsInput({
|
|
2535
|
-
title: 'Новый срок кредита, месяцев',
|
|
2536
|
-
min: calculatorParams.minMonths,
|
|
2537
|
-
max: calculatorParams.maxMonths,
|
|
2538
|
-
...field('monthsValue'),
|
|
2539
|
-
value: calculatorParams.monthsValue,
|
|
2540
|
-
}), renderCreditParamsForm({ ...calculatorParams, ...paramsViewSettings }, field), calculatorParams.isExtraMoney
|
|
2541
|
-
? renderWantedSumInput({
|
|
2542
|
-
title: 'Дополнительная сумма, ₽ ',
|
|
2543
|
-
step: 500,
|
|
2544
|
-
min: calculatorParams.minSumExtra,
|
|
2545
|
-
max: calculatorParams.maxSumExtra,
|
|
2546
|
-
...field('moneyExtra'),
|
|
2547
|
-
value: calculatorParams.moneyExtra,
|
|
2548
|
-
})
|
|
2549
|
-
: null, jsx("div", { className: "sm:hidden pt-1 pb-4 border-b border-main-divider", children: paymentTypeElement })] }), renderRate({
|
|
2550
|
-
rate: calculatorParams.rate,
|
|
2551
|
-
fractionDigits: 1,
|
|
2552
|
-
}), jsxs("div", { className: "flex flex-col gap-2xl mt-2 sm:w-96 sm:mt-0", children: [jsx(CalculatorValueBlock, { title: 'Ежемесячный платёж', value: calculatorParams.monthlyPayment, postfix: "\u20BD" }), calculatorParams.benefit > 0 ? (jsx(CalculatorValueBlock, { title: 'Выгода в месяц', value: calculatorParams.benefit, postfix: "\u20BD" })) : null, jsx("div", { className: "hidden sm:block", children: paymentTypeElement }), renderButtonsSection(buttons, { isVertical: true }), renderFootnote(footnote)] })] }));
|
|
2546
|
+
min: calculatorParams.minSumExtra,
|
|
2547
|
+
max: calculatorParams.maxSumExtra,
|
|
2548
|
+
...field('moneyExtra'),
|
|
2549
|
+
value: calculatorParams.moneyExtra,
|
|
2550
|
+
})
|
|
2551
|
+
: null, jsx("div", { className: "sm:hidden pt-1 pb-4 border-b border-main-divider", children: paymentTypeElement })] }), rateChildren: renderRate({
|
|
2552
|
+
rate: calculatorParams.rate,
|
|
2553
|
+
fractionDigits: 1,
|
|
2554
|
+
}), resultChildren: jsxs("div", { children: [jsx(CalculatorValueBlock, { title: "\u0415\u0436\u0435\u043C\u0435\u0441\u044F\u0447\u043D\u044B\u0439 \u043F\u043B\u0430\u0442\u0451\u0436", value: calculatorParams.monthlyPayment, postfix: "\u20BD" }), calculatorParams.benefit > 0 ? (jsx(CalculatorValueBlock, { title: 'Выгода в месяц', value: calculatorParams.benefit, postfix: "\u20BD" })) : null, jsx("div", { className: "hidden sm:block", children: paymentTypeElement }), renderButtonsSection(buttons, { isVertical: true }), renderFootnote(footnote)] }) }));
|
|
2553
2555
|
});
|
|
2554
2556
|
const renderCreditParamsForm = (params, field) => (jsxs("div", { className: "space-y-lg sm:space-y-s", children: [params.isShowSalaryClient ? (jsx(Checkbox, { text: "\u041F\u043E\u043B\u0443\u0447\u0430\u044E \u0437\u0430\u0440\u043F\u043B\u0430\u0442\u0443 \u043D\u0430 \u0441\u0447\u0451\u0442 \u0432 \u0420\u043E\u0441\u0441\u0435\u043B\u044C\u0445\u043E\u0437\u0431\u0430\u043D\u043A\u0435", ...field('isSalaryClient'), value: params.isSalaryClient })) : null, params.isShowInsurance ? (jsx(Checkbox, { text: "\u041A\u043E\u043C\u043F\u043B\u0435\u043A\u0441\u043D\u0430\u044F \u0441\u0442\u0440\u0430\u0445\u043E\u0432\u0430\u044F \u0437\u0430\u0449\u0438\u0442\u0430", ...field('isInsurance'), value: params.isInsurance })) : null, jsx(Checkbox, { text: "\u041F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u0434\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u0443\u044E \u0441\u0443\u043C\u043C\u0443", ...field('isExtraMoney'), value: params.isExtraMoney })] }));
|
|
2555
2557
|
|
|
@@ -5794,7 +5796,7 @@
|
|
|
5794
5796
|
return (jsx("div", { className: "flex items-end absolute bottom-0 right-0 h-full pointer-events-none", children: jsx(LikeControl, { className: "rounded-tl-3xl sticky bottom-0 pointer-events-auto" }) }));
|
|
5795
5797
|
}
|
|
5796
5798
|
|
|
5797
|
-
const packageVersion = "0.14.
|
|
5799
|
+
const packageVersion = "0.14.105";
|
|
5798
5800
|
|
|
5799
5801
|
exports.Blocks = Blocks;
|
|
5800
5802
|
exports.ContentPage = ContentPage;
|