@redneckz/wildless-cms-uni-blocks 0.8.25 → 0.8.26
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/bin/migration-scripts/0.6.43.js +4 -1
- package/bin/migration-scripts/0.7.8.js +4 -1
- package/bin/migration-scripts/0.8.15.js +4 -1
- package/bundle/bundle.umd.js +7 -7
- package/bundle/bundle.umd.min.js +1 -1
- package/bundle/ui-kit/BenefitItem/BenefitItemProps.d.ts +1 -1
- package/dist/components/ApplicationForm/ApplicationFormAcquiring.js +2 -2
- package/dist/components/ApplicationForm/ApplicationFormCredit.js +2 -2
- package/dist/components/ApplicationForm/ApplicationFormWed.js +2 -2
- package/dist/ui-kit/BenefitItem/BenefitItemProps.d.ts +1 -1
- package/lib/components/ApplicationForm/ApplicationFormAcquiring.js +2 -2
- package/lib/components/ApplicationForm/ApplicationFormCredit.js +2 -2
- package/lib/components/ApplicationForm/ApplicationFormWed.js +2 -2
- package/lib/ui-kit/BenefitItem/BenefitItemProps.d.ts +1 -1
- package/mobile/bundle/bundle.umd.js +1 -1
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/bundle/ui-kit/BenefitItem/BenefitItemProps.d.ts +1 -1
- package/mobile/dist/components/ApplicationForm/ApplicationFormAcquiring.js +2 -2
- package/mobile/dist/components/ApplicationForm/ApplicationFormCredit.js +2 -2
- package/mobile/dist/components/ApplicationForm/ApplicationFormWed.js +2 -2
- package/mobile/dist/ui-kit/BenefitItem/BenefitItemProps.d.ts +1 -1
- package/mobile/lib/components/ApplicationForm/ApplicationFormAcquiring.js +2 -2
- package/mobile/lib/components/ApplicationForm/ApplicationFormCredit.js +2 -2
- package/mobile/lib/components/ApplicationForm/ApplicationFormWed.js +2 -2
- package/mobile/lib/ui-kit/BenefitItem/BenefitItemProps.d.ts +1 -1
- package/mobile/src/components/ApplicationForm/ApplicationFormAcquiring.tsx +2 -2
- package/mobile/src/components/ApplicationForm/ApplicationFormCredit.tsx +2 -2
- package/mobile/src/components/ApplicationForm/ApplicationFormWed.tsx +2 -2
- package/mobile/src/components/PictureText/PictureText.example.json +2 -0
- package/mobile/src/components/StepsBlock/StepsBlock.example.json +4 -1
- package/mobile/src/ui-kit/BenefitItem/BenefitItemProps.ts +1 -1
- package/package.json +1 -1
- package/src/components/ApplicationForm/ApplicationFormAcquiring.tsx +2 -2
- package/src/components/ApplicationForm/ApplicationFormCredit.tsx +2 -2
- package/src/components/ApplicationForm/ApplicationFormWed.tsx +2 -2
- package/src/components/PictureText/PictureText.example.json +2 -0
- package/src/components/StepsBlock/StepsBlock.example.json +4 -1
- package/src/ui-kit/BenefitItem/BenefitItemProps.ts +1 -1
|
@@ -65,7 +65,7 @@ export const ApplicationFormCredit = JSX<ApplicationFormsProps>((props) => {
|
|
|
65
65
|
const onSubmit = async (e: PreventableEvent) => {
|
|
66
66
|
e.preventDefault();
|
|
67
67
|
|
|
68
|
-
const
|
|
68
|
+
const partnerComments = `Сумма=${amount}/Срок=${term}/Выручка=${annualRevenue}`;
|
|
69
69
|
|
|
70
70
|
handleSubmit &&
|
|
71
71
|
(await handleSubmit({
|
|
@@ -77,7 +77,7 @@ export const ApplicationFormCredit = JSX<ApplicationFormsProps>((props) => {
|
|
|
77
77
|
mail,
|
|
78
78
|
region: regions.find((_) => _.code === selectedRegion)?.name || '',
|
|
79
79
|
department: branches.find((_) => _.branchCode === department)?.address || '',
|
|
80
|
-
|
|
80
|
+
partnerComments,
|
|
81
81
|
}));
|
|
82
82
|
};
|
|
83
83
|
|
|
@@ -54,7 +54,7 @@ export const ApplicationFormWed = JSX<ApplicationFormsProps>((props) => {
|
|
|
54
54
|
const onSubmit = async (e: PreventableEvent) => {
|
|
55
55
|
e.preventDefault();
|
|
56
56
|
|
|
57
|
-
const
|
|
57
|
+
const partnerComments = `Валютный контроль=${currencyControl}/Документарные операции=${documentaryOperations}/Конверсионные операции=${conversionOperations}/Доп инф=${text}`;
|
|
58
58
|
|
|
59
59
|
handleSubmit &&
|
|
60
60
|
(await handleSubmit({
|
|
@@ -63,7 +63,7 @@ export const ApplicationFormWed = JSX<ApplicationFormsProps>((props) => {
|
|
|
63
63
|
name,
|
|
64
64
|
phone,
|
|
65
65
|
mail,
|
|
66
|
-
|
|
66
|
+
partnerComments,
|
|
67
67
|
}));
|
|
68
68
|
};
|
|
69
69
|
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
"directionRight": false,
|
|
14
14
|
"benefits": [
|
|
15
15
|
{
|
|
16
|
+
"type": "default",
|
|
16
17
|
"label": "Преимущество №1",
|
|
17
18
|
"icon": {
|
|
18
19
|
"format": "webp",
|
|
@@ -20,6 +21,7 @@
|
|
|
20
21
|
}
|
|
21
22
|
},
|
|
22
23
|
{
|
|
24
|
+
"type": "default",
|
|
23
25
|
"label": "Преимущество №2",
|
|
24
26
|
"icon": {
|
|
25
27
|
"format": "webp",
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"stepVersion": "gray",
|
|
9
9
|
"steps": [
|
|
10
10
|
{
|
|
11
|
+
"type": "default",
|
|
11
12
|
"label": "Шаг №1",
|
|
12
13
|
"description": "Описание шага №1",
|
|
13
14
|
"icon": {
|
|
@@ -22,9 +23,10 @@
|
|
|
22
23
|
"text": "Кнопка",
|
|
23
24
|
"target": "_blank",
|
|
24
25
|
"version": "primary"
|
|
25
|
-
}
|
|
26
|
+
}
|
|
26
27
|
},
|
|
27
28
|
{
|
|
29
|
+
"type": "default",
|
|
28
30
|
"label": "Шаг №2",
|
|
29
31
|
"icon": {
|
|
30
32
|
"icon": "PassSendIcon",
|
|
@@ -41,6 +43,7 @@
|
|
|
41
43
|
}
|
|
42
44
|
},
|
|
43
45
|
{
|
|
46
|
+
"type": "default",
|
|
44
47
|
"description": "Шаг №3 без заголовка",
|
|
45
48
|
"icon": {
|
|
46
49
|
"icon": "ActualBalanceIcon",
|
package/package.json
CHANGED
|
@@ -61,13 +61,13 @@ export const ApplicationFormAcquiring = JSX<ApplicationFormsProps>((props) => {
|
|
|
61
61
|
const onSubmit = async (e: PreventableEvent) => {
|
|
62
62
|
e.preventDefault();
|
|
63
63
|
|
|
64
|
-
const
|
|
64
|
+
const partnerComments = `Вид эквайринга=${acquiringType}/Онлайн касса=${onlineСheckout}/POS-терминал=${posTerminal}`;
|
|
65
65
|
|
|
66
66
|
handleSubmit &&
|
|
67
67
|
(await handleSubmit({
|
|
68
68
|
typeForm: 'acqr',
|
|
69
69
|
region: regions.find((_) => _.code === selectedRegion)?.name || '',
|
|
70
|
-
|
|
70
|
+
partnerComments,
|
|
71
71
|
fullName,
|
|
72
72
|
inn,
|
|
73
73
|
name,
|
|
@@ -65,7 +65,7 @@ export const ApplicationFormCredit = JSX<ApplicationFormsProps>((props) => {
|
|
|
65
65
|
const onSubmit = async (e: PreventableEvent) => {
|
|
66
66
|
e.preventDefault();
|
|
67
67
|
|
|
68
|
-
const
|
|
68
|
+
const partnerComments = `Сумма=${amount}/Срок=${term}/Выручка=${annualRevenue}`;
|
|
69
69
|
|
|
70
70
|
handleSubmit &&
|
|
71
71
|
(await handleSubmit({
|
|
@@ -77,7 +77,7 @@ export const ApplicationFormCredit = JSX<ApplicationFormsProps>((props) => {
|
|
|
77
77
|
mail,
|
|
78
78
|
region: regions.find((_) => _.code === selectedRegion)?.name || '',
|
|
79
79
|
department: branches.find((_) => _.branchCode === department)?.address || '',
|
|
80
|
-
|
|
80
|
+
partnerComments,
|
|
81
81
|
}));
|
|
82
82
|
};
|
|
83
83
|
|
|
@@ -54,7 +54,7 @@ export const ApplicationFormWed = JSX<ApplicationFormsProps>((props) => {
|
|
|
54
54
|
const onSubmit = async (e: PreventableEvent) => {
|
|
55
55
|
e.preventDefault();
|
|
56
56
|
|
|
57
|
-
const
|
|
57
|
+
const partnerComments = `Валютный контроль=${currencyControl}/Документарные операции=${documentaryOperations}/Конверсионные операции=${conversionOperations}/Доп инф=${text}`;
|
|
58
58
|
|
|
59
59
|
handleSubmit &&
|
|
60
60
|
(await handleSubmit({
|
|
@@ -63,7 +63,7 @@ export const ApplicationFormWed = JSX<ApplicationFormsProps>((props) => {
|
|
|
63
63
|
name,
|
|
64
64
|
phone,
|
|
65
65
|
mail,
|
|
66
|
-
|
|
66
|
+
partnerComments,
|
|
67
67
|
}));
|
|
68
68
|
};
|
|
69
69
|
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
"directionRight": false,
|
|
14
14
|
"benefits": [
|
|
15
15
|
{
|
|
16
|
+
"type": "default",
|
|
16
17
|
"label": "Преимущество №1",
|
|
17
18
|
"icon": {
|
|
18
19
|
"format": "webp",
|
|
@@ -20,6 +21,7 @@
|
|
|
20
21
|
}
|
|
21
22
|
},
|
|
22
23
|
{
|
|
24
|
+
"type": "default",
|
|
23
25
|
"label": "Преимущество №2",
|
|
24
26
|
"icon": {
|
|
25
27
|
"format": "webp",
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"stepVersion": "gray",
|
|
9
9
|
"steps": [
|
|
10
10
|
{
|
|
11
|
+
"type": "default",
|
|
11
12
|
"label": "Шаг №1",
|
|
12
13
|
"description": "Описание шага №1",
|
|
13
14
|
"icon": {
|
|
@@ -22,9 +23,10 @@
|
|
|
22
23
|
"text": "Кнопка",
|
|
23
24
|
"target": "_blank",
|
|
24
25
|
"version": "primary"
|
|
25
|
-
}
|
|
26
|
+
}
|
|
26
27
|
},
|
|
27
28
|
{
|
|
29
|
+
"type": "default",
|
|
28
30
|
"label": "Шаг №2",
|
|
29
31
|
"icon": {
|
|
30
32
|
"icon": "PassSendIcon",
|
|
@@ -41,6 +43,7 @@
|
|
|
41
43
|
}
|
|
42
44
|
},
|
|
43
45
|
{
|
|
46
|
+
"type": "default",
|
|
44
47
|
"description": "Шаг №3 без заголовка",
|
|
45
48
|
"icon": {
|
|
46
49
|
"icon": "ActualBalanceIcon",
|