@redneckz/wildless-cms-uni-blocks 0.14.644 → 0.14.645

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.
@@ -6550,6 +6550,7 @@
6550
6550
 
6551
6551
  const WIZARD_STEPS = 5;
6552
6552
  const WIZARD_TITLES = [
6553
+ '',
6553
6554
  'Персональные данные',
6554
6555
  'Данные о трудоустройстве',
6555
6556
  'Данные о доходах и расходах',
@@ -6569,7 +6570,7 @@
6569
6570
  const inputs = (sections?.flatMap((_) => _?.inputs) || []);
6570
6571
  const isStartStep = step === 0;
6571
6572
  const [isFormFinished, setIsFormFinished] = useState(false);
6572
- return (jsx(BlockWrapper, { className: style('bg-transparent', className), defaultPadding: "p-6xl", ...rest, children: jsxs("div", { className: "container grid grid-cols-12", children: [isStartStep || isFormFinished ? null : (jsx(CreditFormProgress, { stepsTitles: WIZARD_TITLES, step: step, totalSteps: WIZARD_STEPS })), jsx("div", { className: "py-lg px-5xl mt-2xs bg-white col-span-12", children: jsx(CreditFormStep, { step: step, inputs: inputs, sections: sections, onNextStep: handleNextStep, onPrevStep: handlePrevStep, isFormFinished: isFormFinished, finishForm: setIsFormFinished, renderStep: isStartStep
6573
+ return (jsx(BlockWrapper, { className: style('bg-transparent', className), defaultPadding: "p-0", ...rest, children: jsxs("div", { className: "container grid grid-cols-12", children: [isStartStep || isFormFinished ? null : (jsx(CreditFormProgress, { stepsTitles: WIZARD_TITLES, step: step, totalSteps: WIZARD_STEPS })), jsx("div", { className: "py-lg px-5xl mt-2xs bg-white col-span-12", children: jsx(CreditFormStep, { step: step, inputs: inputs, sections: sections, onNextStep: handleNextStep, onPrevStep: handlePrevStep, isFormFinished: isFormFinished, finishForm: setIsFormFinished, renderStep: isStartStep
6573
6574
  ? ({ registerSubmit }) => (jsx(CalculatorCredit, { ...{
6574
6575
  title: 'Калькулятор кредита',
6575
6576
  footnote: 'Расчёт является предварительным. Точные условия будут предоставлены в отделении Банка.',
@@ -8839,7 +8840,7 @@
8839
8840
  slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
8840
8841
  });
8841
8842
 
8842
- const packageVersion = "0.14.643";
8843
+ const packageVersion = "0.14.644";
8843
8844
 
8844
8845
  exports.Blocks = Blocks;
8845
8846
  exports.ContentPage = ContentPage;