govuk_publishing_components 12.0.0 → 12.0.1

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.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/govuk_publishing_components/components/_success-alert.scss +1 -0
  3. data/lib/govuk_publishing_components/version.rb +1 -1
  4. data/node_modules/govuk-frontend/all.js +188 -0
  5. data/node_modules/govuk-frontend/components/_all.scss +1 -0
  6. data/node_modules/govuk-frontend/components/back-link/README.md +12 -12
  7. data/node_modules/govuk-frontend/components/breadcrumbs/README.md +18 -18
  8. data/node_modules/govuk-frontend/components/button/README.md +30 -30
  9. data/node_modules/govuk-frontend/components/button/template.njk +1 -1
  10. data/node_modules/govuk-frontend/components/character-count/README.md +497 -0
  11. data/node_modules/govuk-frontend/components/character-count/_character-count.scss +31 -0
  12. data/node_modules/govuk-frontend/components/character-count/character-count.js +1201 -0
  13. data/node_modules/govuk-frontend/components/character-count/macro-options.json +83 -0
  14. data/node_modules/govuk-frontend/components/character-count/macro.njk +3 -0
  15. data/node_modules/govuk-frontend/components/character-count/template.njk +32 -0
  16. data/node_modules/govuk-frontend/components/checkboxes/README.md +57 -57
  17. data/node_modules/govuk-frontend/components/date-input/README.md +36 -36
  18. data/node_modules/govuk-frontend/components/details/README.md +18 -18
  19. data/node_modules/govuk-frontend/components/error-message/README.md +12 -12
  20. data/node_modules/govuk-frontend/components/error-summary/README.md +24 -24
  21. data/node_modules/govuk-frontend/components/fieldset/README.md +21 -21
  22. data/node_modules/govuk-frontend/components/file-upload/README.md +24 -24
  23. data/node_modules/govuk-frontend/components/footer/README.md +51 -51
  24. data/node_modules/govuk-frontend/components/header/README.md +42 -42
  25. data/node_modules/govuk-frontend/components/header/_header.scss +2 -0
  26. data/node_modules/govuk-frontend/components/hint/README.md +12 -12
  27. data/node_modules/govuk-frontend/components/input/README.md +27 -27
  28. data/node_modules/govuk-frontend/components/inset-text/README.md +12 -12
  29. data/node_modules/govuk-frontend/components/label/README.md +15 -15
  30. data/node_modules/govuk-frontend/components/panel/README.md +15 -15
  31. data/node_modules/govuk-frontend/components/phase-banner/README.md +12 -12
  32. data/node_modules/govuk-frontend/components/radios/README.md +60 -60
  33. data/node_modules/govuk-frontend/components/radios/_radios.scss +1 -0
  34. data/node_modules/govuk-frontend/components/select/README.md +39 -39
  35. data/node_modules/govuk-frontend/components/select/_select.scss +1 -1
  36. data/node_modules/govuk-frontend/components/skip-link/README.md +12 -12
  37. data/node_modules/govuk-frontend/components/table/README.md +45 -45
  38. data/node_modules/govuk-frontend/components/table/macro-options.json +12 -0
  39. data/node_modules/govuk-frontend/components/table/template.njk +7 -3
  40. data/node_modules/govuk-frontend/components/tabs/README.md +30 -30
  41. data/node_modules/govuk-frontend/components/tag/README.md +9 -9
  42. data/node_modules/govuk-frontend/components/textarea/README.md +30 -30
  43. data/node_modules/govuk-frontend/components/warning-text/README.md +12 -12
  44. data/node_modules/govuk-frontend/package.json +11 -11
  45. metadata +8 -2
@@ -60,6 +60,8 @@
60
60
 
61
61
  .govuk-header__product-name {
62
62
  @include govuk-font($size: 24);
63
+ display: inline-table;
64
+ padding-right: govuk-spacing(2);
63
65
  }
64
66
 
65
67
  .govuk-header__link {
@@ -92,11 +92,11 @@ If you are using Nunjucks,then macros take the following arguments
92
92
 
93
93
  <th class="govuk-table__header" scope="row">text or (html) html</th>
94
94
 
95
- <td class="govuk-table__cell ">string</td>
95
+ <td class="govuk-table__cell">string</td>
96
96
 
97
- <td class="govuk-table__cell ">Yes</td>
97
+ <td class="govuk-table__cell">Yes</td>
98
98
 
99
- <td class="govuk-table__cell ">Text or HTML to use within the hint. If `html` is provided, the `text` argument will be ignored.</td>
99
+ <td class="govuk-table__cell">Text or HTML to use within the hint. If `html` is provided, the `text` argument will be ignored.</td>
100
100
 
101
101
  </tr>
102
102
 
@@ -104,11 +104,11 @@ If you are using Nunjucks,then macros take the following arguments
104
104
 
105
105
  <th class="govuk-table__header" scope="row">id</th>
106
106
 
107
- <td class="govuk-table__cell ">string</td>
107
+ <td class="govuk-table__cell">string</td>
108
108
 
109
- <td class="govuk-table__cell ">Yes</td>
109
+ <td class="govuk-table__cell">Yes</td>
110
110
 
111
- <td class="govuk-table__cell ">Optional id attribute o add to the hint span tag.</td>
111
+ <td class="govuk-table__cell">Optional id attribute o add to the hint span tag.</td>
112
112
 
113
113
  </tr>
114
114
 
@@ -116,11 +116,11 @@ If you are using Nunjucks,then macros take the following arguments
116
116
 
117
117
  <th class="govuk-table__header" scope="row">classes</th>
118
118
 
119
- <td class="govuk-table__cell ">string</td>
119
+ <td class="govuk-table__cell">string</td>
120
120
 
121
- <td class="govuk-table__cell ">No</td>
121
+ <td class="govuk-table__cell">No</td>
122
122
 
123
- <td class="govuk-table__cell ">Optional additional classes to add to the hint span tag.</td>
123
+ <td class="govuk-table__cell">Optional additional classes to add to the hint span tag.</td>
124
124
 
125
125
  </tr>
126
126
 
@@ -128,11 +128,11 @@ If you are using Nunjucks,then macros take the following arguments
128
128
 
129
129
  <th class="govuk-table__header" scope="row">attributes</th>
130
130
 
131
- <td class="govuk-table__cell ">object</td>
131
+ <td class="govuk-table__cell">object</td>
132
132
 
133
- <td class="govuk-table__cell ">No</td>
133
+ <td class="govuk-table__cell">No</td>
134
134
 
135
- <td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the hint span tag.</td>
135
+ <td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the hint span tag.</td>
136
136
 
137
137
  </tr>
138
138
 
@@ -423,11 +423,11 @@ If you are using Nunjucks,then macros take the following arguments
423
423
 
424
424
  <th class="govuk-table__header" scope="row">id</th>
425
425
 
426
- <td class="govuk-table__cell ">string</td>
426
+ <td class="govuk-table__cell">string</td>
427
427
 
428
- <td class="govuk-table__cell ">Yes</td>
428
+ <td class="govuk-table__cell">Yes</td>
429
429
 
430
- <td class="govuk-table__cell ">The id of the input.</td>
430
+ <td class="govuk-table__cell">The id of the input.</td>
431
431
 
432
432
  </tr>
433
433
 
@@ -435,11 +435,11 @@ If you are using Nunjucks,then macros take the following arguments
435
435
 
436
436
  <th class="govuk-table__header" scope="row">name</th>
437
437
 
438
- <td class="govuk-table__cell ">string</td>
438
+ <td class="govuk-table__cell">string</td>
439
439
 
440
- <td class="govuk-table__cell ">Yes</td>
440
+ <td class="govuk-table__cell">Yes</td>
441
441
 
442
- <td class="govuk-table__cell ">The name of the input, which is submitted with the form data.</td>
442
+ <td class="govuk-table__cell">The name of the input, which is submitted with the form data.</td>
443
443
 
444
444
  </tr>
445
445
 
@@ -447,11 +447,11 @@ If you are using Nunjucks,then macros take the following arguments
447
447
 
448
448
  <th class="govuk-table__header" scope="row">type</th>
449
449
 
450
- <td class="govuk-table__cell ">string</td>
450
+ <td class="govuk-table__cell">string</td>
451
451
 
452
- <td class="govuk-table__cell ">No</td>
452
+ <td class="govuk-table__cell">No</td>
453
453
 
454
- <td class="govuk-table__cell ">Type of input control to render. Defaults to "text".</td>
454
+ <td class="govuk-table__cell">Type of input control to render. Defaults to "text".</td>
455
455
 
456
456
  </tr>
457
457
 
@@ -459,11 +459,11 @@ If you are using Nunjucks,then macros take the following arguments
459
459
 
460
460
  <th class="govuk-table__header" scope="row">value</th>
461
461
 
462
- <td class="govuk-table__cell ">string</td>
462
+ <td class="govuk-table__cell">string</td>
463
463
 
464
- <td class="govuk-table__cell ">No</td>
464
+ <td class="govuk-table__cell">No</td>
465
465
 
466
- <td class="govuk-table__cell ">Optional initial value of the input.</td>
466
+ <td class="govuk-table__cell">Optional initial value of the input.</td>
467
467
 
468
468
  </tr>
469
469
 
@@ -471,11 +471,11 @@ If you are using Nunjucks,then macros take the following arguments
471
471
 
472
472
  <th class="govuk-table__header" scope="row">label</th>
473
473
 
474
- <td class="govuk-table__cell ">object</td>
474
+ <td class="govuk-table__cell">object</td>
475
475
 
476
- <td class="govuk-table__cell ">No</td>
476
+ <td class="govuk-table__cell">No</td>
477
477
 
478
- <td class="govuk-table__cell ">Arguments for the label component. See <a href="../label/README.md#component-arguments">label</a> component.</td>
478
+ <td class="govuk-table__cell">Arguments for the label component. See <a href="../label/README.md#component-arguments">label</a> component.</td>
479
479
 
480
480
  </tr>
481
481
 
@@ -483,11 +483,11 @@ If you are using Nunjucks,then macros take the following arguments
483
483
 
484
484
  <th class="govuk-table__header" scope="row">hint</th>
485
485
 
486
- <td class="govuk-table__cell ">object</td>
486
+ <td class="govuk-table__cell">object</td>
487
487
 
488
- <td class="govuk-table__cell ">No</td>
488
+ <td class="govuk-table__cell">No</td>
489
489
 
490
- <td class="govuk-table__cell ">Arguments for the hint component (e.g. text). See <a href="../hint/README.md#component-arguments">hint</a> component.</td>
490
+ <td class="govuk-table__cell">Arguments for the hint component (e.g. text). See <a href="../hint/README.md#component-arguments">hint</a> component.</td>
491
491
 
492
492
  </tr>
493
493
 
@@ -495,11 +495,11 @@ If you are using Nunjucks,then macros take the following arguments
495
495
 
496
496
  <th class="govuk-table__header" scope="row">errorMessage</th>
497
497
 
498
- <td class="govuk-table__cell ">object</td>
498
+ <td class="govuk-table__cell">object</td>
499
499
 
500
- <td class="govuk-table__cell ">No</td>
500
+ <td class="govuk-table__cell">No</td>
501
501
 
502
- <td class="govuk-table__cell ">Arguments for the errorMessage component (e.g. text). See <a href="../error-message/README.md#component-arguments">errorMessage</a> component.</td>
502
+ <td class="govuk-table__cell">Arguments for the errorMessage component (e.g. text). See <a href="../error-message/README.md#component-arguments">errorMessage</a> component.</td>
503
503
 
504
504
  </tr>
505
505
 
@@ -507,11 +507,11 @@ If you are using Nunjucks,then macros take the following arguments
507
507
 
508
508
  <th class="govuk-table__header" scope="row">classes</th>
509
509
 
510
- <td class="govuk-table__cell ">string</td>
510
+ <td class="govuk-table__cell">string</td>
511
511
 
512
- <td class="govuk-table__cell ">No</td>
512
+ <td class="govuk-table__cell">No</td>
513
513
 
514
- <td class="govuk-table__cell ">Optional additional classes add to the input component.</td>
514
+ <td class="govuk-table__cell">Optional additional classes add to the input component.</td>
515
515
 
516
516
  </tr>
517
517
 
@@ -519,11 +519,11 @@ If you are using Nunjucks,then macros take the following arguments
519
519
 
520
520
  <th class="govuk-table__header" scope="row">attributes</th>
521
521
 
522
- <td class="govuk-table__cell ">object</td>
522
+ <td class="govuk-table__cell">object</td>
523
523
 
524
- <td class="govuk-table__cell ">No</td>
524
+ <td class="govuk-table__cell">No</td>
525
525
 
526
- <td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the input component.</td>
526
+ <td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the input component.</td>
527
527
 
528
528
  </tr>
529
529
 
@@ -88,11 +88,11 @@ If you are using Nunjucks,then macros take the following arguments
88
88
 
89
89
  <th class="govuk-table__header" scope="row">text (or) html</th>
90
90
 
91
- <td class="govuk-table__cell ">string</td>
91
+ <td class="govuk-table__cell">string</td>
92
92
 
93
- <td class="govuk-table__cell ">Yes</td>
93
+ <td class="govuk-table__cell">Yes</td>
94
94
 
95
- <td class="govuk-table__cell ">Text or HTML to use within the inset text. If `html` is provided, the `text` argument will be ignored.</td>
95
+ <td class="govuk-table__cell">Text or HTML to use within the inset text. If `html` is provided, the `text` argument will be ignored.</td>
96
96
 
97
97
  </tr>
98
98
 
@@ -100,11 +100,11 @@ If you are using Nunjucks,then macros take the following arguments
100
100
 
101
101
  <th class="govuk-table__header" scope="row">id</th>
102
102
 
103
- <td class="govuk-table__cell ">string</td>
103
+ <td class="govuk-table__cell">string</td>
104
104
 
105
- <td class="govuk-table__cell ">No</td>
105
+ <td class="govuk-table__cell">No</td>
106
106
 
107
- <td class="govuk-table__cell ">Optional id attribute to add to the inset text container.</td>
107
+ <td class="govuk-table__cell">Optional id attribute to add to the inset text container.</td>
108
108
 
109
109
  </tr>
110
110
 
@@ -112,11 +112,11 @@ If you are using Nunjucks,then macros take the following arguments
112
112
 
113
113
  <th class="govuk-table__header" scope="row">classes</th>
114
114
 
115
- <td class="govuk-table__cell ">string</td>
115
+ <td class="govuk-table__cell">string</td>
116
116
 
117
- <td class="govuk-table__cell ">No</td>
117
+ <td class="govuk-table__cell">No</td>
118
118
 
119
- <td class="govuk-table__cell ">Optional additional classes to add to the inset text container.</td>
119
+ <td class="govuk-table__cell">Optional additional classes to add to the inset text container.</td>
120
120
 
121
121
  </tr>
122
122
 
@@ -124,11 +124,11 @@ If you are using Nunjucks,then macros take the following arguments
124
124
 
125
125
  <th class="govuk-table__header" scope="row">attributes</th>
126
126
 
127
- <td class="govuk-table__cell ">object</td>
127
+ <td class="govuk-table__cell">object</td>
128
128
 
129
- <td class="govuk-table__cell ">No</td>
129
+ <td class="govuk-table__cell">No</td>
130
130
 
131
- <td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the inset text container.</td>
131
+ <td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the inset text container.</td>
132
132
 
133
133
  </tr>
134
134
 
@@ -112,11 +112,11 @@ If you are using Nunjucks,then macros take the following arguments
112
112
 
113
113
  <th class="govuk-table__header" scope="row">text (or) html</th>
114
114
 
115
- <td class="govuk-table__cell ">string</td>
115
+ <td class="govuk-table__cell">string</td>
116
116
 
117
- <td class="govuk-table__cell ">Yes</td>
117
+ <td class="govuk-table__cell">Yes</td>
118
118
 
119
- <td class="govuk-table__cell ">Text or HTML to use within the label. If `html` is provided, the `text` argument will be ignored.</td>
119
+ <td class="govuk-table__cell">Text or HTML to use within the label. If `html` is provided, the `text` argument will be ignored.</td>
120
120
 
121
121
  </tr>
122
122
 
@@ -124,11 +124,11 @@ If you are using Nunjucks,then macros take the following arguments
124
124
 
125
125
  <th class="govuk-table__header" scope="row">for</th>
126
126
 
127
- <td class="govuk-table__cell ">string</td>
127
+ <td class="govuk-table__cell">string</td>
128
128
 
129
- <td class="govuk-table__cell ">Yes</td>
129
+ <td class="govuk-table__cell">Yes</td>
130
130
 
131
- <td class="govuk-table__cell ">The value of the for attribute, the id of the input the label is associated with.</td>
131
+ <td class="govuk-table__cell">The value of the for attribute, the id of the input the label is associated with.</td>
132
132
 
133
133
  </tr>
134
134
 
@@ -136,11 +136,11 @@ If you are using Nunjucks,then macros take the following arguments
136
136
 
137
137
  <th class="govuk-table__header" scope="row">isPageHeading</th>
138
138
 
139
- <td class="govuk-table__cell ">boolean</td>
139
+ <td class="govuk-table__cell">boolean</td>
140
140
 
141
- <td class="govuk-table__cell ">No</td>
141
+ <td class="govuk-table__cell">No</td>
142
142
 
143
- <td class="govuk-table__cell ">Whether the label also acts as the heading for the page.</td>
143
+ <td class="govuk-table__cell">Whether the label also acts as the heading for the page.</td>
144
144
 
145
145
  </tr>
146
146
 
@@ -148,11 +148,11 @@ If you are using Nunjucks,then macros take the following arguments
148
148
 
149
149
  <th class="govuk-table__header" scope="row">classes</th>
150
150
 
151
- <td class="govuk-table__cell ">string</td>
151
+ <td class="govuk-table__cell">string</td>
152
152
 
153
- <td class="govuk-table__cell ">No</td>
153
+ <td class="govuk-table__cell">No</td>
154
154
 
155
- <td class="govuk-table__cell ">Optional additional classes to add to the label tag.</td>
155
+ <td class="govuk-table__cell">Optional additional classes to add to the label tag.</td>
156
156
 
157
157
  </tr>
158
158
 
@@ -160,11 +160,11 @@ If you are using Nunjucks,then macros take the following arguments
160
160
 
161
161
  <th class="govuk-table__header" scope="row">attributes</th>
162
162
 
163
- <td class="govuk-table__cell ">object</td>
163
+ <td class="govuk-table__cell">object</td>
164
164
 
165
- <td class="govuk-table__cell ">No</td>
165
+ <td class="govuk-table__cell">No</td>
166
166
 
167
- <td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the label tag.</td>
167
+ <td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the label tag.</td>
168
168
 
169
169
  </tr>
170
170
 
@@ -109,11 +109,11 @@ If you are using Nunjucks,then macros take the following arguments
109
109
 
110
110
  <th class="govuk-table__header" scope="row">titleText (or) titleHtml</th>
111
111
 
112
- <td class="govuk-table__cell ">string</td>
112
+ <td class="govuk-table__cell">string</td>
113
113
 
114
- <td class="govuk-table__cell ">Yes</td>
114
+ <td class="govuk-table__cell">Yes</td>
115
115
 
116
- <td class="govuk-table__cell ">Text or HTML for the panel title. If `titleHtml` is provided, the `titleText` argument is ignored.</td>
116
+ <td class="govuk-table__cell">Text or HTML for the panel title. If `titleHtml` is provided, the `titleText` argument is ignored.</td>
117
117
 
118
118
  </tr>
119
119
 
@@ -121,11 +121,11 @@ If you are using Nunjucks,then macros take the following arguments
121
121
 
122
122
  <th class="govuk-table__header" scope="row">headingLevel</th>
123
123
 
124
- <td class="govuk-table__cell ">number</td>
124
+ <td class="govuk-table__cell">number</td>
125
125
 
126
- <td class="govuk-table__cell ">no</td>
126
+ <td class="govuk-table__cell">no</td>
127
127
 
128
- <td class="govuk-table__cell ">Optional heading level, from 1 to 6\. Default is 2.</td>
128
+ <td class="govuk-table__cell">Optional heading level, from 1 to 6\. Default is 2.</td>
129
129
 
130
130
  </tr>
131
131
 
@@ -133,11 +133,11 @@ If you are using Nunjucks,then macros take the following arguments
133
133
 
134
134
  <th class="govuk-table__header" scope="row">text (or) html</th>
135
135
 
136
- <td class="govuk-table__cell ">string</td>
136
+ <td class="govuk-table__cell">string</td>
137
137
 
138
- <td class="govuk-table__cell ">No</td>
138
+ <td class="govuk-table__cell">No</td>
139
139
 
140
- <td class="govuk-table__cell ">Text or HTML for the panel content. If `html` is provided, the `text` argument is ignored.</td>
140
+ <td class="govuk-table__cell">Text or HTML for the panel content. If `html` is provided, the `text` argument is ignored.</td>
141
141
 
142
142
  </tr>
143
143
 
@@ -145,11 +145,11 @@ If you are using Nunjucks,then macros take the following arguments
145
145
 
146
146
  <th class="govuk-table__header" scope="row">classes</th>
147
147
 
148
- <td class="govuk-table__cell ">string</td>
148
+ <td class="govuk-table__cell">string</td>
149
149
 
150
- <td class="govuk-table__cell ">No</td>
150
+ <td class="govuk-table__cell">No</td>
151
151
 
152
- <td class="govuk-table__cell ">Optional additional classes to add to the panel container.</td>
152
+ <td class="govuk-table__cell">Optional additional classes to add to the panel container.</td>
153
153
 
154
154
  </tr>
155
155
 
@@ -157,11 +157,11 @@ If you are using Nunjucks,then macros take the following arguments
157
157
 
158
158
  <th class="govuk-table__header" scope="row">attributes</th>
159
159
 
160
- <td class="govuk-table__cell ">object</td>
160
+ <td class="govuk-table__cell">object</td>
161
161
 
162
- <td class="govuk-table__cell ">No</td>
162
+ <td class="govuk-table__cell">No</td>
163
163
 
164
- <td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the panel container.</td>
164
+ <td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the panel container.</td>
165
165
 
166
166
  </tr>
167
167
 
@@ -83,11 +83,11 @@ If you are using Nunjucks,then macros take the following arguments
83
83
 
84
84
  <th class="govuk-table__header" scope="row">text (or) html</th>
85
85
 
86
- <td class="govuk-table__cell ">string</td>
86
+ <td class="govuk-table__cell">string</td>
87
87
 
88
- <td class="govuk-table__cell ">Yes</td>
88
+ <td class="govuk-table__cell">Yes</td>
89
89
 
90
- <td class="govuk-table__cell ">HTML to use for the phase-banner message. If `html` is provided, the `text` argument will be ignored.</td>
90
+ <td class="govuk-table__cell">HTML to use for the phase-banner message. If `html` is provided, the `text` argument will be ignored.</td>
91
91
 
92
92
  </tr>
93
93
 
@@ -95,11 +95,11 @@ If you are using Nunjucks,then macros take the following arguments
95
95
 
96
96
  <th class="govuk-table__header" scope="row">tag</th>
97
97
 
98
- <td class="govuk-table__cell ">object</td>
98
+ <td class="govuk-table__cell">object</td>
99
99
 
100
- <td class="govuk-table__cell ">No</td>
100
+ <td class="govuk-table__cell">No</td>
101
101
 
102
- <td class="govuk-table__cell ">Arguments for the tag object. See <a href="../tag/README.md#component-arguments">tag</a> component.</td>
102
+ <td class="govuk-table__cell">Arguments for the tag object. See <a href="../tag/README.md#component-arguments">tag</a> component.</td>
103
103
 
104
104
  </tr>
105
105
 
@@ -107,11 +107,11 @@ If you are using Nunjucks,then macros take the following arguments
107
107
 
108
108
  <th class="govuk-table__header" scope="row">classes</th>
109
109
 
110
- <td class="govuk-table__cell ">string</td>
110
+ <td class="govuk-table__cell">string</td>
111
111
 
112
- <td class="govuk-table__cell ">No</td>
112
+ <td class="govuk-table__cell">No</td>
113
113
 
114
- <td class="govuk-table__cell ">Optional additional classes to add to the phase banner container.</td>
114
+ <td class="govuk-table__cell">Optional additional classes to add to the phase banner container.</td>
115
115
 
116
116
  </tr>
117
117
 
@@ -119,11 +119,11 @@ If you are using Nunjucks,then macros take the following arguments
119
119
 
120
120
  <th class="govuk-table__header" scope="row">attributes</th>
121
121
 
122
- <td class="govuk-table__cell ">object</td>
122
+ <td class="govuk-table__cell">object</td>
123
123
 
124
- <td class="govuk-table__cell ">No</td>
124
+ <td class="govuk-table__cell">No</td>
125
125
 
126
- <td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the phase banner container.</td>
126
+ <td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the phase banner container.</td>
127
127
 
128
128
  </tr>
129
129