@redneckz/wildless-cms-uni-blocks 0.14.789 → 0.14.791

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.
Files changed (25) hide show
  1. package/bundle/bundle.umd.js +4 -3
  2. package/bundle/bundle.umd.min.js +1 -1
  3. package/dist/components/CalculatorDeposit/renderDepositParamsForm.js +1 -1
  4. package/dist/components/CalculatorDeposit/renderDepositParamsForm.js.map +1 -1
  5. package/dist/retail/adaptors/getPersonalInfoData.js +2 -1
  6. package/dist/retail/adaptors/getPersonalInfoData.js.map +1 -1
  7. package/lib/components/CalculatorDeposit/renderDepositParamsForm.js +1 -1
  8. package/lib/components/CalculatorDeposit/renderDepositParamsForm.js.map +1 -1
  9. package/lib/retail/adaptors/getPersonalInfoData.js +2 -1
  10. package/lib/retail/adaptors/getPersonalInfoData.js.map +1 -1
  11. package/mobile/bundle/bundle.umd.js +4 -3
  12. package/mobile/bundle/bundle.umd.min.js +1 -1
  13. package/mobile/dist/components/CalculatorDeposit/renderDepositParamsForm.js +1 -1
  14. package/mobile/dist/components/CalculatorDeposit/renderDepositParamsForm.js.map +1 -1
  15. package/mobile/dist/retail/adaptors/getPersonalInfoData.js +2 -1
  16. package/mobile/dist/retail/adaptors/getPersonalInfoData.js.map +1 -1
  17. package/mobile/lib/components/CalculatorDeposit/renderDepositParamsForm.js +1 -1
  18. package/mobile/lib/components/CalculatorDeposit/renderDepositParamsForm.js.map +1 -1
  19. package/mobile/lib/retail/adaptors/getPersonalInfoData.js +2 -1
  20. package/mobile/lib/retail/adaptors/getPersonalInfoData.js.map +1 -1
  21. package/mobile/src/components/CalculatorDeposit/renderDepositParamsForm.tsx +3 -1
  22. package/mobile/src/retail/adaptors/getPersonalInfoData.tsx +2 -0
  23. package/package.json +1 -1
  24. package/src/components/CalculatorDeposit/renderDepositParamsForm.tsx +3 -1
  25. package/src/retail/adaptors/getPersonalInfoData.tsx +2 -0
@@ -6723,7 +6723,7 @@
6723
6723
 
6724
6724
  const renderDepositParamsForm = (params, field, extraPercents) => {
6725
6725
  const isCurrency = params?.currency?.key !== 'rub';
6726
- return (jsxs("div", { className: "grid grid-cols-2 gap-lg", children: [renderReplenish(field('isReplenish'), params, isCurrency), renderWithdrawn(field('isWithdrawn'), params, isCurrency), renderSeparator(params.isShowReplenish || params.isShowWithdrawn), params.isShowMonthlyInterestPayment ? renderPayout(field('isMonthlyInterestPayment')) : null, renderRegistrationType(field('isRemoteRegistration'), params.isShowRemoteRegistration), renderExtraPercents(field('extraPercent'), extraPercents), params.isShowNewClient ? jsx(Checkbox, { text: "\u041D\u043E\u0432\u044B\u0439 \u0432\u043A\u043B\u0430\u0434\u0447\u0438\u043A", ...field('isNewClient') }) : null] }));
6726
+ return (jsxs("div", { className: "grid grid-cols-2 gap-lg", children: [renderReplenish(field('isReplenish'), params, isCurrency), renderWithdrawn(field('isWithdrawn'), params, isCurrency), renderSeparator(params.isShowReplenish || params.isShowWithdrawn), params.isShowMonthlyInterestPayment ? renderPayout(field('isMonthlyInterestPayment')) : null, renderRegistrationType(field('isRemoteRegistration'), params.isShowRemoteRegistration), renderExtraPercents(field('extraPercent'), extraPercents), params.isShowNewClient ? (jsx(Checkbox, { text: "\u041D\u043E\u0432\u044B\u0439 \u0441\u0431\u0435\u0440\u0435\u0433\u0430\u0442\u0435\u043B\u044C", ...field('isNewClient') })) : null] }));
6727
6727
  };
6728
6728
  const renderReplenish = (props, params, isCurrency = false) => params.isShowReplenish
6729
6729
  ? renderBinaryRadioButtonGroup({
@@ -7702,7 +7702,7 @@
7702
7702
  };
7703
7703
 
7704
7704
  const getPersonalInfoData = (formData) => {
7705
- const { name, surname, middleName, limitedBirthday = '', phone = '', email, sex, birthPlace, dulIssueDate = '', dulIssuedBy, dulNumber, dulSerie, dulSubdivisionCode, education, participantDateRegistration = '', housing, addressRegistration, addressFact, } = formData;
7705
+ const { name, surname, middleName, limitedBirthday = '', phone = '', email, sex, birthPlace, dulIssueDate = '', dulIssuedBy, dulNumber, dulSerie, dulSubdivisionCode, education, participantDateRegistration = '', housing, addressRegistration, addressFact, addressMatch, } = formData;
7706
7706
  return {
7707
7707
  birthDate: formatDate(limitedBirthday, true),
7708
7708
  midname: middleName,
@@ -7716,6 +7716,7 @@
7716
7716
  dulSubdivisionCode,
7717
7717
  educationLevelCd: education,
7718
7718
  registrationDate: formatDate(participantDateRegistration, true),
7719
+ homeMatchFlg: addressMatch,
7719
7720
  houseTypeCd: housing,
7720
7721
  participantContacts: getParticipantContacts$1({
7721
7722
  phone: formatPhone(phone),
@@ -11264,7 +11265,7 @@
11264
11265
  slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
11265
11266
  });
11266
11267
 
11267
- const packageVersion = "0.14.788";
11268
+ const packageVersion = "0.14.790";
11268
11269
 
11269
11270
  exports.Blocks = Blocks;
11270
11271
  exports.ContentPage = ContentPage;