metadata_presenter 0.16.0 → 0.16.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 15e470bd0e87527625fba6e246f2e9a43bf3523bc7689ecb1bfd18d760bca18c
4
- data.tar.gz: 90dc8301fa94e80d07f7072f009ba44f79d4741e80539f5331bb27440d8672f6
3
+ metadata.gz: 5a8b044a284008931b778a50a1940563f749100928b63e7bd524fee9d084f636
4
+ data.tar.gz: 59c2ce2dd991b6626a5e31064e6e0e7467987ce0eb378de628a98e08d33f44ba
5
5
  SHA512:
6
- metadata.gz: 873b081845358aa9569833889372ec358f034add8e6f6437b62c32ad8c3aa98d8292a86e605e7109f2d62a8ca5073a40e5354289b10369401f2975a5ff4cb89a
7
- data.tar.gz: d3ffa82016eb6b56825ca39e9ef01b93f903a5488d2a1e5599474b2c04d0654a718dc6a3f1528fcb26ce69fc89dabcfcb757d206aceeb668163be4bff729ae6c
6
+ metadata.gz: d3b9083adba3e4c7a4c5391c89cb3da1b7f77cbfb08f308a1a2ec902072c02f22e07e53f6f4fbf3f3c3cf2d2afce5911230ba010c05454126706c5ed0797545a
7
+ data.tar.gz: c54ca229a2a4af58d4a7fc07f6943cef91bfe327912e35afcbd79e4dbde04d0efd70f0abfd61da8261c1343a5fc9e7c1ab5fc427abd8d0fa0aff240139042ebb
@@ -2,20 +2,20 @@
2
2
  "_id": "component.checkboxes",
3
3
  "_type": "checkboxes",
4
4
  "errors": {},
5
- "hint": "[Hint text (optional)]",
5
+ "hint": "[Optional hint text]",
6
6
  "items": [
7
7
  {
8
8
  "_id": "component_checkbox_1",
9
9
  "_type": "checkbox",
10
10
  "label": "Option",
11
- "hint": "[Hint text (optional)]",
11
+ "hint": "[Optional hint text]",
12
12
  "value": "value-1"
13
13
  },
14
14
  {
15
15
  "_id": "component_checkbox_2",
16
16
  "_type": "checkbox",
17
17
  "label": "Option",
18
- "hint": "[Hint text (optional)]",
18
+ "hint": "[Optional hint text]",
19
19
  "value": "value-2"
20
20
  }
21
21
  ],
@@ -2,8 +2,8 @@
2
2
  "_id": "component.date",
3
3
  "_type": "date",
4
4
  "errors": {},
5
- "hint": "Component hint",
6
- "legend": "Component legend",
5
+ "hint": "[Optional hint text]",
6
+ "legend": "Question",
7
7
  "name": "component-name",
8
8
  "date_type": "day-month-year",
9
9
  "validation": {
@@ -2,8 +2,8 @@
2
2
  "_id": "component.number",
3
3
  "_type": "number",
4
4
  "errors": {},
5
- "hint": "Component hint",
6
- "label": "Component label",
5
+ "hint": "[Optional hint text]",
6
+ "label": "Question",
7
7
  "name": "component-name",
8
8
  "width_class_input": "10",
9
9
  "validation": {
@@ -2,20 +2,20 @@
2
2
  "_id": "component.radios",
3
3
  "_type": "radios",
4
4
  "errors": {},
5
- "hint": "[Hint text (optional)]",
5
+ "hint": "[Optional hint text]",
6
6
  "items": [
7
7
  {
8
8
  "_id": "component_radio_1",
9
9
  "_type": "radio",
10
10
  "label": "Option",
11
- "hint": "[Hint text (optional)]",
11
+ "hint": "[Optional hint text]",
12
12
  "value": "value-1"
13
13
  },
14
14
  {
15
15
  "_id": "component_radio_2",
16
16
  "_type": "radio",
17
17
  "label": "Option",
18
- "hint": "[Hint text (optional)]",
18
+ "hint": "[Optional hint text]",
19
19
  "value": "value-2"
20
20
  }
21
21
  ],
@@ -3,7 +3,7 @@
3
3
  "_type": "text",
4
4
  "errors": {},
5
5
  "label": "Question",
6
- "hint": "Hint (optional)",
6
+ "hint": "[Optional hint text]",
7
7
  "name": "component-name",
8
8
  "validation": {
9
9
  "required": true
@@ -2,8 +2,8 @@
2
2
  "_id": "component.textarea",
3
3
  "_type": "textarea",
4
4
  "errors": {},
5
- "hint": "Component hint",
6
- "label": "Component label",
5
+ "hint": "[Optional hint text]",
6
+ "label": "Question",
7
7
  "name": "component-name",
8
8
  "rows": 5,
9
9
  "validation": {
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "_id": "page.confirmation",
3
3
  "_type": "page.confirmation",
4
- "heading": "Required - Confirmation"
4
+ "heading": "Application complete"
5
5
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_id": "page.multiplequestions",
3
3
  "_type": "page.multiplequestions",
4
- "section_heading": "[Section heading (optional)]",
5
- "heading": "Question",
4
+ "section_heading": "[Optional section heading]",
5
+ "heading": "Title",
6
6
  "components": [],
7
7
  "url": ""
8
8
  }
@@ -1,3 +1,3 @@
1
1
  module MetadataPresenter
2
- VERSION = '0.16.0'
2
+ VERSION = '0.16.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metadata_presenter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0
4
+ version: 0.16.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - MoJ Online
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-04 00:00:00.000000000 Z
11
+ date: 2021-03-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails