@redneckz/wildless-cms-uni-blocks 0.14.524 → 0.14.525
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 +1 -1
- package/bundle/bundle.umd.min.js +1 -1
- package/mobile/bundle/bundle.umd.js +1 -1
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/src/components/ApplicationForm/ApplicationForm.example.json +12 -2
- package/package.json +1 -1
- package/src/components/ApplicationForm/ApplicationForm.example.json +12 -2
- package/src/components/ApplicationForm/ApplicationForm.fixture.mobile.tsx +7 -2
- package/src/components/ApplicationForm/ApplicationForm.fixture.tsx +7 -2
|
@@ -21,9 +21,19 @@
|
|
|
21
21
|
"title": "Данные организации",
|
|
22
22
|
"columns": 2,
|
|
23
23
|
"inputs": [
|
|
24
|
-
{
|
|
24
|
+
{
|
|
25
|
+
"fieldType": "common",
|
|
26
|
+
"name": "fullName",
|
|
27
|
+
"required": true,
|
|
28
|
+
"label": "Наименование организации"
|
|
29
|
+
},
|
|
25
30
|
{ "fieldType": "common", "name": "inn", "required": true },
|
|
26
|
-
{
|
|
31
|
+
{
|
|
32
|
+
"fieldType": "common",
|
|
33
|
+
"name": "name",
|
|
34
|
+
"required": true,
|
|
35
|
+
"label": "Контактное лицо"
|
|
36
|
+
},
|
|
27
37
|
{ "fieldType": "common", "name": "phone", "required": true }
|
|
28
38
|
]
|
|
29
39
|
},
|
package/package.json
CHANGED
|
@@ -21,9 +21,19 @@
|
|
|
21
21
|
"title": "Данные организации",
|
|
22
22
|
"columns": 2,
|
|
23
23
|
"inputs": [
|
|
24
|
-
{
|
|
24
|
+
{
|
|
25
|
+
"fieldType": "common",
|
|
26
|
+
"name": "fullName",
|
|
27
|
+
"required": true,
|
|
28
|
+
"label": "Наименование организации"
|
|
29
|
+
},
|
|
25
30
|
{ "fieldType": "common", "name": "inn", "required": true },
|
|
26
|
-
{
|
|
31
|
+
{
|
|
32
|
+
"fieldType": "common",
|
|
33
|
+
"name": "name",
|
|
34
|
+
"required": true,
|
|
35
|
+
"label": "Контактное лицо"
|
|
36
|
+
},
|
|
27
37
|
{ "fieldType": "common", "name": "phone", "required": true }
|
|
28
38
|
]
|
|
29
39
|
},
|
|
@@ -65,9 +65,14 @@ export default {
|
|
|
65
65
|
title: 'Данные организации',
|
|
66
66
|
columns: 2,
|
|
67
67
|
inputs: [
|
|
68
|
-
{
|
|
68
|
+
{
|
|
69
|
+
fieldType: 'common',
|
|
70
|
+
name: 'fullName',
|
|
71
|
+
required: true,
|
|
72
|
+
label: 'Наименование организации',
|
|
73
|
+
},
|
|
69
74
|
{ fieldType: 'common', name: 'inn', required: true },
|
|
70
|
-
{ fieldType: 'common', name: 'name', required: true },
|
|
75
|
+
{ fieldType: 'common', name: 'name', required: true, label: 'Контактное лицо' },
|
|
71
76
|
{ fieldType: 'common', name: 'phone', required: true },
|
|
72
77
|
],
|
|
73
78
|
},
|
|
@@ -67,9 +67,14 @@ export default {
|
|
|
67
67
|
title: 'Данные организации',
|
|
68
68
|
columns: 2,
|
|
69
69
|
inputs: [
|
|
70
|
-
{
|
|
70
|
+
{
|
|
71
|
+
fieldType: 'common',
|
|
72
|
+
name: 'fullName',
|
|
73
|
+
required: true,
|
|
74
|
+
label: 'Наименование организации',
|
|
75
|
+
},
|
|
71
76
|
{ fieldType: 'common', name: 'inn', required: true },
|
|
72
|
-
{ fieldType: 'common', name: 'name', required: true },
|
|
77
|
+
{ fieldType: 'common', name: 'name', required: true, label: 'Контактное лицо' },
|
|
73
78
|
{ fieldType: 'common', name: 'phone', required: true },
|
|
74
79
|
],
|
|
75
80
|
},
|