@redneckz/wildless-cms-uni-blocks 0.14.718 → 0.14.720
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 +4 -2
- package/bundle/bundle.umd.min.js +1 -1
- package/bundle/components/ApplicationLeadForm/LeadFormState.d.ts +1 -1
- package/bundle/components/CreditForm/utils.d.ts +1 -0
- package/dist/components/ApplicationLeadForm/LeadFormState.d.ts +1 -1
- package/dist/components/CreditForm/utils.d.ts +1 -0
- package/dist/components/CreditForm/utils.js +1 -0
- package/dist/components/CreditForm/utils.js.map +1 -1
- package/dist/services/retail/adaptors/getEmploymentData.js +2 -1
- package/dist/services/retail/adaptors/getEmploymentData.js.map +1 -1
- package/lib/components/ApplicationLeadForm/LeadFormState.d.ts +1 -1
- package/lib/components/CreditForm/utils.d.ts +1 -0
- package/lib/components/CreditForm/utils.js +1 -0
- package/lib/components/CreditForm/utils.js.map +1 -1
- package/lib/services/retail/adaptors/getEmploymentData.js +2 -1
- package/lib/services/retail/adaptors/getEmploymentData.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +4 -2
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/bundle/components/ApplicationLeadForm/LeadFormState.d.ts +1 -1
- package/mobile/bundle/components/CreditForm/utils.d.ts +1 -0
- package/mobile/dist/components/ApplicationLeadForm/LeadFormState.d.ts +1 -1
- package/mobile/dist/components/CreditForm/utils.d.ts +1 -0
- package/mobile/dist/components/CreditForm/utils.js +1 -0
- package/mobile/dist/components/CreditForm/utils.js.map +1 -1
- package/mobile/dist/services/retail/adaptors/getEmploymentData.js +2 -1
- package/mobile/dist/services/retail/adaptors/getEmploymentData.js.map +1 -1
- package/mobile/lib/components/ApplicationLeadForm/LeadFormState.d.ts +1 -1
- package/mobile/lib/components/CreditForm/utils.d.ts +1 -0
- package/mobile/lib/components/CreditForm/utils.js +1 -0
- package/mobile/lib/components/CreditForm/utils.js.map +1 -1
- package/mobile/lib/services/retail/adaptors/getEmploymentData.js +2 -1
- package/mobile/lib/services/retail/adaptors/getEmploymentData.js.map +1 -1
- package/mobile/src/components/ApplicationLeadForm/LeadFormState.ts +1 -1
- package/mobile/src/components/CreditForm/utils.ts +1 -0
- package/mobile/src/services/retail/adaptors/getEmploymentData.tsx +2 -0
- package/package.json +1 -1
- package/src/components/ApplicationLeadForm/LeadFormState.ts +1 -1
- package/src/components/CreditForm/utils.ts +1 -0
- package/src/services/retail/adaptors/getEmploymentData.tsx +2 -0
package/bundle/bundle.umd.js
CHANGED
|
@@ -5019,6 +5019,7 @@
|
|
|
5019
5019
|
addressRegistration: 'REGISTRATION',
|
|
5020
5020
|
addressFact: 'RESIDENTAL',
|
|
5021
5021
|
organizationAddress: 'WORK',
|
|
5022
|
+
addressCourier: 'DELIVERY',
|
|
5022
5023
|
};
|
|
5023
5024
|
const fieldsNamesToIncomeKeysMap = {
|
|
5024
5025
|
incomeAverage: 'INCOME_AVERAGE',
|
|
@@ -7006,7 +7007,7 @@
|
|
|
7006
7007
|
};
|
|
7007
7008
|
|
|
7008
7009
|
const getEmploymentData = (formData) => {
|
|
7009
|
-
const { beginDate, employment, organizationName, inn, legalForm, organization, amountWorkers, employerActivities, employerOrganization, generalSeniority, lastJobExperience, experience5Years, jobsNumber, organizationPhone, organizationAddress, positionOrganization, } = formData;
|
|
7010
|
+
const { beginDate, employment, organizationName, inn, legalForm, organization, amountWorkers, employerActivities, employerOrganization, generalSeniority, lastJobExperience, experience5Years, jobsNumber, organizationPhone, organizationAddress, positionOrganization, partInBusiness, } = formData;
|
|
7010
7011
|
return {
|
|
7011
7012
|
employmentContractDate: formatDate(beginDate || '', true),
|
|
7012
7013
|
employmentTypeCd: employment,
|
|
@@ -7026,6 +7027,7 @@
|
|
|
7026
7027
|
organizationPhone: organizationPhone && formatPhone(organizationPhone),
|
|
7027
7028
|
}),
|
|
7028
7029
|
participantAddresses: getParticipantAddresses({ organizationAddress }),
|
|
7030
|
+
ownershipShare: positionOrganization?.key === 'BUSINESS_OWNER' ? partInBusiness : '',
|
|
7029
7031
|
};
|
|
7030
7032
|
};
|
|
7031
7033
|
|
|
@@ -10494,7 +10496,7 @@
|
|
|
10494
10496
|
slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
|
|
10495
10497
|
});
|
|
10496
10498
|
|
|
10497
|
-
const packageVersion = "0.14.
|
|
10499
|
+
const packageVersion = "0.14.719";
|
|
10498
10500
|
|
|
10499
10501
|
exports.Blocks = Blocks;
|
|
10500
10502
|
exports.ContentPage = ContentPage;
|