mod-build 3.7.18 → 3.7.19

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.7.19
4
+
5
+ - Added missed attributes in global questions config of siding and tree services.
6
+
3
7
  ## 3.7.18
4
8
 
5
9
  - Fixing console log
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-build",
3
- "version": "3.7.18",
3
+ "version": "3.7.19",
4
4
  "description": "Share components for S3 sites.",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -112,6 +112,7 @@ const siding = {
112
112
  options: [
113
113
  {
114
114
  attributes: {
115
+ name: 'stories',
115
116
  value: 'One story',
116
117
  checked: '',
117
118
  data: {
@@ -122,6 +123,7 @@ const siding = {
122
123
  },
123
124
  {
124
125
  attributes: {
126
+ name: 'stories',
125
127
  value: 'Two story',
126
128
  data: {
127
129
  required: 'nonempty'
@@ -131,6 +133,7 @@ const siding = {
131
133
  },
132
134
  {
133
135
  attributes: {
136
+ name: 'stories',
134
137
  value: 'Three stories or more',
135
138
  data: {
136
139
  required: 'nonempty'
@@ -12,7 +12,9 @@ const tree_services = {
12
12
  attributes: {
13
13
  name: 'JobType',
14
14
  value: 'Tree Removal',
15
-
15
+ data: {
16
+ required: 'nonempty'
17
+ }
16
18
  }
17
19
  },
18
20
  {
@@ -20,7 +22,9 @@ const tree_services = {
20
22
  attributes: {
21
23
  name: 'JobType',
22
24
  value: 'Tree Trimming',
23
-
25
+ data: {
26
+ required: 'nonempty'
27
+ }
24
28
  }
25
29
  },
26
30
  {
@@ -28,7 +32,9 @@ const tree_services = {
28
32
  attributes: {
29
33
  name: 'JobType',
30
34
  value: 'Stump Removal',
31
-
35
+ data: {
36
+ required: 'nonempty'
37
+ }
32
38
  }
33
39
  },
34
40
  {
@@ -36,7 +42,9 @@ const tree_services = {
36
42
  attributes: {
37
43
  name: 'JobType',
38
44
  value: 'Other',
39
-
45
+ data: {
46
+ required: 'nonempty'
47
+ }
40
48
  }
41
49
  }
42
50
  ]