Socket
Socket
Sign inDemoInstall

govuk-frontend

Package Overview
Dependencies
Maintainers
1
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

govuk-frontend - npm Package Compare versions

Comparing version 2.1.0 to 2.2.0

components/character-count/_character-count.scss

188

all.js

@@ -1239,2 +1239,184 @@ (function (global, factory) {

function CharacterCount ($module) {
this.$module = $module;
this.$textarea = $module.querySelector('.js-character-count');
}
CharacterCount.prototype.defaults = {
characterCountAttribute: 'data-maxlength',
wordCountAttribute: 'data-maxwords'
};
// Initialize component
CharacterCount.prototype.init = function () {
// Check for module
var $module = this.$module;
var $textarea = this.$textarea;
if (!$textarea) {
return
}
// Read options set using dataset ('data-' values)
this.options = this.getDataset($module);
// Determine the limit attribute (characters or words)
var countAttribute = this.defaults.characterCountAttribute;
if (this.options.maxwords) {
countAttribute = this.defaults.wordCountAttribute;
}
// Save the element limit
this.maxLength = $module.getAttribute(countAttribute);
// Check for limit
if (!this.maxLength) {
return
}
// Generate and reference message
var boundCreateCountMessage = this.createCountMessage.bind(this);
this.countMessage = boundCreateCountMessage();
// If there's a maximum length defined and the count message exists
if (this.countMessage) {
// Remove hard limit if set
$module.removeAttribute('maxlength');
// Bind event changes to the textarea
var boundChangeEvents = this.bindChangeEvents.bind(this);
boundChangeEvents();
// Update count message
var boundUpdateCountMessage = this.updateCountMessage.bind(this);
boundUpdateCountMessage();
}
};
// Read data attributes
CharacterCount.prototype.getDataset = function (element) {
var dataset = {};
var attributes = element.attributes;
if (attributes) {
for (var i = 0; i < attributes.length; i++) {
var attribute = attributes[i];
var match = attribute.name.match(/^data-(.+)/);
if (match) {
dataset[match[1]] = attribute.value;
}
}
}
return dataset
};
// Counts characters or words in text
CharacterCount.prototype.count = function (text) {
var length;
if (this.options.maxwords) {
var tokens = text.match(/\S+/g) || []; // Matches consecutive non-whitespace chars
length = tokens.length;
} else {
length = text.length;
}
return length
};
// Generate count message and bind it to the input
// returns reference to the generated element
CharacterCount.prototype.createCountMessage = function () {
var countElement = this.$textarea;
var elementId = countElement.id;
// Check for existing info count message
var countMessage = document.getElementById(elementId + '-info');
// If there is no existing info count message we add one right after the field
if (elementId && !countMessage) {
countElement.insertAdjacentHTML('afterend', '<span id="' + elementId + '-info" class="govuk-hint govuk-character-count__message" aria-live="polite"></span>');
this.describedBy = countElement.getAttribute('aria-describedby');
this.describedByInfo = this.describedBy + ' ' + elementId + '-info';
countElement.setAttribute('aria-describedby', this.describedByInfo);
countMessage = document.getElementById(elementId + '-info');
} else {
// If there is an existing info count message we move it right after the field
countElement.insertAdjacentElement('afterend', countMessage);
}
return countMessage
};
// Bind input propertychange to the elements and update based on the change
CharacterCount.prototype.bindChangeEvents = function () {
var $textarea = this.$textarea;
$textarea.addEventListener('keyup', this.checkIfValueChanged.bind(this));
// Bind focus/blur events to start/stop polling
$textarea.addEventListener('focus', this.handleFocus.bind(this));
$textarea.addEventListener('blur', this.handleBlur.bind(this));
};
// Speech recognition software such as Dragon NaturallySpeaking will modify the
// fields by directly changing its `value`. These changes don't trigger events
// in JavaScript, so we need to poll to handle when and if they occur.
CharacterCount.prototype.checkIfValueChanged = function () {
if (!this.$textarea.oldValue) this.$textarea.oldValue = '';
if (this.$textarea.value !== this.$textarea.oldValue) {
this.$textarea.oldValue = this.$textarea.value;
var boundUpdateCountMessage = this.updateCountMessage.bind(this);
boundUpdateCountMessage();
}
};
// Update message box
CharacterCount.prototype.updateCountMessage = function () {
var countElement = this.$textarea;
var options = this.options;
var countMessage = this.countMessage;
// Determine the remaining number of characters/words
var currentLength = this.count(countElement.value);
var maxLength = this.maxLength;
var remainingNumber = maxLength - currentLength;
// Set threshold if presented in options
var thresholdPercent = options.threshold ? options.threshold : 0;
var thresholdValue = maxLength * thresholdPercent / 100;
if (thresholdValue > currentLength) {
countMessage.classList.add('govuk-character-count__message--disabled');
} else {
countMessage.classList.remove('govuk-character-count__message--disabled');
}
// Update styles
if (remainingNumber < 0) {
countElement.classList.add('govuk-textarea--error');
countMessage.classList.remove('govuk-hint');
countMessage.classList.add('govuk-error-message');
} else {
countElement.classList.remove('govuk-textarea--error');
countMessage.classList.remove('govuk-error-message');
countMessage.classList.add('govuk-hint');
}
// Update message
var charVerb = 'remaining';
var charNoun = 'character';
var displayNumber = remainingNumber;
if (options.maxwords) {
charNoun = 'word';
}
charNoun = charNoun + ((remainingNumber === -1 || remainingNumber === 1) ? '' : 's');
charVerb = (remainingNumber < 0) ? 'too many' : 'remaining';
displayNumber = Math.abs(remainingNumber);
countMessage.innerHTML = 'You have ' + displayNumber + ' ' + charNoun + ' ' + charVerb;
};
CharacterCount.prototype.handleFocus = function () {
// Check if value changed on focus
this.valueChecker = setInterval(this.checkIfValueChanged.bind(this), 1000);
};
CharacterCount.prototype.handleBlur = function () {
// Cancel value checking on blur
clearInterval(this.valueChecker);
};
function Checkboxes ($module) {

@@ -1692,2 +1874,7 @@ this.$module = $module;

var $characterCount = document.querySelectorAll('[data-module="character-count"]');
nodeListForEach($characterCount, function ($characterCount) {
new CharacterCount($characterCount).init();
});
var $checkboxes = document.querySelectorAll('[data-module="checkboxes"]');

@@ -1720,2 +1907,3 @@ nodeListForEach($checkboxes, function ($checkbox) {

exports.Details = Details;
exports.CharacterCount = CharacterCount;
exports.Checkboxes = Checkboxes;

@@ -1722,0 +1910,0 @@ exports.ErrorSummary = ErrorSummary;

24

components/back-link/README.md

@@ -92,7 +92,7 @@ # Back link

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Text or HTML to use within the back link component. If `html` is provided, the `text` argument will be ignored.</td>
<td class="govuk-table__cell">Text or HTML to use within the back link component. If `html` is provided, the `text` argument will be ignored.</td>

@@ -105,7 +105,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">The value of the link href attribute</td>
<td class="govuk-table__cell">The value of the link href attribute</td>

@@ -118,7 +118,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes to add to the anchor tag.</td>
<td class="govuk-table__cell">Optional additional classes to add to the anchor tag.</td>

@@ -131,7 +131,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the anchor tag.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the anchor tag.</td>

@@ -138,0 +138,0 @@ </tr>

@@ -257,7 +257,7 @@ # Breadcrumbs

<td class="govuk-table__cell ">array</td>
<td class="govuk-table__cell">array</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Array of breadcrumbs item objects.</td>
<td class="govuk-table__cell">Array of breadcrumbs item objects.</td>

@@ -270,7 +270,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Text or HTML to use within the breadcrumbs item. If `html` is provided, the `text` argument will be ignored.</td>
<td class="govuk-table__cell">Text or HTML to use within the breadcrumbs item. If `html` is provided, the `text` argument will be ignored.</td>

@@ -283,7 +283,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">no</td>
<td class="govuk-table__cell">no</td>
<td class="govuk-table__cell ">Link for the breadcrumbs item. If not specified, breadcrumbs item is a normal list item</td>
<td class="govuk-table__cell">Link for the breadcrumbs item. If not specified, breadcrumbs item is a normal list item</td>

@@ -296,7 +296,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the breadcrumb anchor item.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the breadcrumb anchor item.</td>

@@ -309,7 +309,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes to add to the breadcrumbs container.</td>
<td class="govuk-table__cell">Optional additional classes to add to the breadcrumbs container.</td>

@@ -322,7 +322,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the breadcrumbs container.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the breadcrumbs container.</td>

@@ -329,0 +329,0 @@ </tr>

@@ -58,3 +58,3 @@ # Button

<a href="/" role="button" class="govuk-button">
<a href="/" role="button" draggable="false" class="govuk-button">
Link button

@@ -78,3 +78,3 @@ </a>

<a href="/" role="button" class="govuk-button govuk-button--disabled">
<a href="/" role="button" draggable="false" class="govuk-button govuk-button--disabled">
Disabled link button

@@ -99,3 +99,3 @@ </a>

<a href="/" role="button" class="govuk-button govuk-button--start">
<a href="/" role="button" draggable="false" class="govuk-button govuk-button--start">
Start now link button

@@ -196,7 +196,7 @@ </a>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Whether to use an `input`, `button` or `a` element to create the button. In most cases you will not need to set this as it will be configured automatically if you use `href` or `html`.</td>
<td class="govuk-table__cell">Whether to use an `input`, `button` or `a` element to create the button. In most cases you will not need to set this as it will be configured automatically if you use `href` or `html`.</td>

@@ -209,7 +209,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Text or HTML for the button or link. If `html` is provided, the `text` argument will be ignored and `element` will be automatically set to `button` unless `href` is also set, or it has already been defined. This argument has no effect if `element` is set to `input`.</td>
<td class="govuk-table__cell">Text or HTML for the button or link. If `html` is provided, the `text` argument will be ignored and `element` will be automatically set to `button` unless `href` is also set, or it has already been defined. This argument has no effect if `element` is set to `input`.</td>

@@ -222,7 +222,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Name for the `input` or `button`. This has no effect on `a` elements.</td>
<td class="govuk-table__cell">Name for the `input` or `button`. This has no effect on `a` elements.</td>

@@ -235,7 +235,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Type of `input` or `button` – `button`, `submit` or `reset`. Defaults to `submit`. This has no effect on `a` elements.</td>
<td class="govuk-table__cell">Type of `input` or `button` – `button`, `submit` or `reset`. Defaults to `submit`. This has no effect on `a` elements.</td>

@@ -248,7 +248,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Value for the `button` tag. This has no effect on `a` or `input` elements.</td>
<td class="govuk-table__cell">Value for the `button` tag. This has no effect on `a` or `input` elements.</td>

@@ -261,7 +261,7 @@ </tr>

<td class="govuk-table__cell ">boolean</td>
<td class="govuk-table__cell">boolean</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Whether the button should be disabled. For button and input elements, `disabled` and `aria-disabled` attributes will be set automatically.</td>
<td class="govuk-table__cell">Whether the button should be disabled. For button and input elements, `disabled` and `aria-disabled` attributes will be set automatically.</td>

@@ -274,7 +274,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">The URL that the button should link to. If this is set, `element` will be automatically set to `a` if it has not already been defined.</td>
<td class="govuk-table__cell">The URL that the button should link to. If this is set, `element` will be automatically set to `a` if it has not already been defined.</td>

@@ -287,7 +287,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes</td>
<td class="govuk-table__cell">Optional additional classes</td>

@@ -300,7 +300,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the button component.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the button component.</td>

@@ -307,0 +307,0 @@ </tr>

@@ -724,7 +724,7 @@ # Checkboxes

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Arguments for the fieldset component (e.g. legend). See <a href="../fieldset/README.md#component-arguments">fieldset</a> component.</td>
<td class="govuk-table__cell">Arguments for the fieldset component (e.g. legend). See <a href="../fieldset/README.md#component-arguments">fieldset</a> component.</td>

@@ -737,7 +737,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<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>
<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>

@@ -750,7 +750,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<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>
<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>

@@ -763,7 +763,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">String to prefix id for each checkbox item if no id is specified on each item. If`idPrefix` is not passed, fallback to using the name attribute instead.</td>
<td class="govuk-table__cell">String to prefix id for each checkbox item if no id is specified on each item. If`idPrefix` is not passed, fallback to using the name attribute instead.</td>

@@ -776,7 +776,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Name attribute for each checkbox item.</td>
<td class="govuk-table__cell">Name attribute for each checkbox item.</td>

@@ -789,7 +789,7 @@ </tr>

<td class="govuk-table__cell ">array</td>
<td class="govuk-table__cell">array</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Array of checkbox items objects.</td>
<td class="govuk-table__cell">Array of checkbox items objects.</td>

@@ -802,7 +802,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Text or HTML to use within each checkbox item label. If `html` is provided, the `text` argument will be ignored.</td>
<td class="govuk-table__cell">Text or HTML to use within each checkbox item label. If `html` is provided, the `text` argument will be ignored.</td>

@@ -815,7 +815,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Specific id attribute for the checkbox item. If ommited, then `idPrefix` string will be applied.</td>
<td class="govuk-table__cell">Specific id attribute for the checkbox item. If ommited, then `idPrefix` string will be applied.</td>

@@ -828,7 +828,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Specific name for the checkbox item. If ommited, then component global `name` string will be applied.</td>
<td class="govuk-table__cell">Specific name for the checkbox item. If ommited, then component global `name` string will be applied.</td>

@@ -841,7 +841,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Value for the checkbox input.</td>
<td class="govuk-table__cell">Value for the checkbox input.</td>

@@ -854,7 +854,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Provide additional attributes and classes to each checkbox item label. See [label](../label/README.md#component-arguments) component for more details.</td>
<td class="govuk-table__cell">Provide additional attributes and classes to each checkbox item label. See [label](../label/README.md#component-arguments) component for more details.</td>

@@ -867,7 +867,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Provide optional hint to each checkbox item. See `hint` component for more details.</td>
<td class="govuk-table__cell">Provide optional hint to each checkbox item. See `hint` component for more details.</td>

@@ -880,7 +880,7 @@ </tr>

<td class="govuk-table__cell ">boolean</td>
<td class="govuk-table__cell">boolean</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">If true, checkbox will be checked.</td>
<td class="govuk-table__cell">If true, checkbox will be checked.</td>

@@ -893,7 +893,7 @@ </tr>

<td class="govuk-table__cell ">boolean</td>
<td class="govuk-table__cell">boolean</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">If true, content provided will be revealed when the item is checked.</td>
<td class="govuk-table__cell">If true, content provided will be revealed when the item is checked.</td>

@@ -906,7 +906,7 @@ </tr>

<td class="govuk-table__cell ">boolean</td>
<td class="govuk-table__cell">boolean</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Provide content for the conditional reveal.</td>
<td class="govuk-table__cell">Provide content for the conditional reveal.</td>

@@ -919,7 +919,7 @@ </tr>

<td class="govuk-table__cell ">boolean</td>
<td class="govuk-table__cell">boolean</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">If true, checkbox will be disabled.</td>
<td class="govuk-table__cell">If true, checkbox will be disabled.</td>

@@ -932,7 +932,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the checkbox input tag.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the checkbox input tag.</td>

@@ -945,7 +945,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes to add to the checkboxes container.</td>
<td class="govuk-table__cell">Optional additional classes to add to the checkboxes container.</td>

@@ -958,7 +958,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the checkboxes container.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the checkboxes container.</td>

@@ -965,0 +965,0 @@ </tr>

@@ -582,7 +582,7 @@ # Date input

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional id. This is used for the main component and to compose id attribute for each item.</td>
<td class="govuk-table__cell">Optional id. This is used for the main component and to compose id attribute for each item.</td>

@@ -595,7 +595,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional prefix. This is used to prefix each `item.name` using `-`.</td>
<td class="govuk-table__cell">Optional prefix. This is used to prefix each `item.name` using `-`.</td>

@@ -608,7 +608,7 @@ </tr>

<td class="govuk-table__cell ">array</td>
<td class="govuk-table__cell">array</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">An array of input objects with name, value and optional classes</td>
<td class="govuk-table__cell">An array of input objects with name, value and optional classes</td>

@@ -621,7 +621,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional item-specific id. If provided, it will be used instead of the generated id.</td>
<td class="govuk-table__cell">Optional item-specific id. If provided, it will be used instead of the generated id.</td>

@@ -634,7 +634,7 @@ </tr>

<td class="govuk-table__cell ">array</td>
<td class="govuk-table__cell">array</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Item-specific name attribute.</td>
<td class="govuk-table__cell">Item-specific name attribute.</td>

@@ -647,7 +647,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional item-specific value attribute. If provided, it will be used as the initial value of the input.</td>
<td class="govuk-table__cell">Optional item-specific value attribute. If provided, it will be used as the initial value of the input.</td>

@@ -660,7 +660,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional item-specific label text. If provided, this will be used instead of the items.{}.name.</td>
<td class="govuk-table__cell">Optional item-specific label text. If provided, this will be used instead of the items.{}.name.</td>

@@ -673,7 +673,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional hint. See <a href="../hint/README.md#component-arguments">hint</a> component.</td>
<td class="govuk-table__cell">Optional hint. See <a href="../hint/README.md#component-arguments">hint</a> component.</td>

@@ -686,7 +686,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional error message. See <a href="../error-message/README.md#component-arguments">errorMessage</a> component.</td>
<td class="govuk-table__cell">Optional error message. See <a href="../error-message/README.md#component-arguments">errorMessage</a> component.</td>

@@ -699,7 +699,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Arguments for the fieldset component (e.g. legend). See <a href="../fieldset/README.md#component-arguments">fieldset</a> component.</td>
<td class="govuk-table__cell">Arguments for the fieldset component (e.g. legend). See <a href="../fieldset/README.md#component-arguments">fieldset</a> component.</td>

@@ -712,7 +712,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes to add to the date-input container.</td>
<td class="govuk-table__cell">Optional additional classes to add to the date-input container.</td>

@@ -725,7 +725,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the date-input container.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the date-input container.</td>

@@ -732,0 +732,0 @@ </tr>

@@ -147,7 +147,7 @@ # Details

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Text or HTML to use within the summary element (the visible part of the details element). If `summaryHtml` is provided, the `summaryText` argument will be ignored.</td>
<td class="govuk-table__cell">Text or HTML to use within the summary element (the visible part of the details element). If `summaryHtml` is provided, the `summaryText` argument will be ignored.</td>

@@ -160,7 +160,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Text or HTML to use within the disclosed part of the details element. If `html` is provided, the `text` argument will be ignored.</td>
<td class="govuk-table__cell">Text or HTML to use within the disclosed part of the details element. If `html` is provided, the `text` argument will be ignored.</td>

@@ -173,7 +173,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional id to add to the details element.</td>
<td class="govuk-table__cell">Optional id to add to the details element.</td>

@@ -186,7 +186,7 @@ </tr>

<td class="govuk-table__cell ">boolean</td>
<td class="govuk-table__cell">boolean</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">If true, details element will be expanded.</td>
<td class="govuk-table__cell">If true, details element will be expanded.</td>

@@ -199,7 +199,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes to add to the details element.</td>
<td class="govuk-table__cell">Optional additional classes to add to the details element.</td>

@@ -212,7 +212,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the details element.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the details element.</td>

@@ -219,0 +219,0 @@ </tr>

@@ -77,7 +77,7 @@ # Error message

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Text to use within the error message. If `html` is provided, the `text` argument will be ignored.</td>
<td class="govuk-table__cell">Text to use within the error message. If `html` is provided, the `text` argument will be ignored.</td>

@@ -90,7 +90,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional id attribute to add to the error message span tag.</td>
<td class="govuk-table__cell">Optional id attribute to add to the error message span tag.</td>

@@ -103,7 +103,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes to add to the error message span tag.</td>
<td class="govuk-table__cell">Optional additional classes to add to the error message span tag.</td>

@@ -116,7 +116,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the error message span tag</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the error message span tag</td>

@@ -123,0 +123,0 @@ </tr>

@@ -113,7 +113,7 @@ # Error summary

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Text or HTML to use for the heading of the error summary block. If `titleHtml` is provided, the `titleText` argument will be ignored.</td>
<td class="govuk-table__cell">Text or HTML to use for the heading of the error summary block. If `titleHtml` is provided, the `titleText` argument will be ignored.</td>

@@ -126,7 +126,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional text or HTML description of the errors. If `descriptionhtml` is provided, the `descriptionText` argument will be ignored.</td>
<td class="govuk-table__cell">Optional text or HTML description of the errors. If `descriptionhtml` is provided, the `descriptionText` argument will be ignored.</td>

@@ -139,7 +139,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Contains an array of error link items and all their available arguments.</td>
<td class="govuk-table__cell">Contains an array of error link items and all their available arguments.</td>

@@ -152,7 +152,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Href attribute for the error link item. If provided item will be an anchor.</td>
<td class="govuk-table__cell">Href attribute for the error link item. If provided item will be an anchor.</td>

@@ -165,7 +165,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Text or HTML for the error link item. If `html` is provided, the `text` argument will be ignored.</td>
<td class="govuk-table__cell">Text or HTML for the error link item. If `html` is provided, the `text` argument will be ignored.</td>

@@ -178,7 +178,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the error link anchor.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the error link anchor.</td>

@@ -191,7 +191,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes to add to the error-summary container.</td>
<td class="govuk-table__cell">Optional additional classes to add to the error-summary container.</td>

@@ -204,7 +204,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the error-summary container.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the error-summary container.</td>

@@ -211,0 +211,0 @@ </tr>

@@ -111,7 +111,7 @@ # Fieldset

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Text or element id to add to the `aria-describedby` attribute to provide description of the group of fields for screenreader users.</td>
<td class="govuk-table__cell">Text or element id to add to the `aria-describedby` attribute to provide description of the group of fields for screenreader users.</td>

@@ -124,7 +124,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Arguments for the legend</td>
<td class="govuk-table__cell">Arguments for the legend</td>

@@ -137,7 +137,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Legend text or HTML. If `html` is provided, the `text` argument will be ignored.</td>
<td class="govuk-table__cell">Legend text or HTML. If `html` is provided, the `text` argument will be ignored.</td>

@@ -150,7 +150,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes to add to the legend container.</td>
<td class="govuk-table__cell">Optional additional classes to add to the legend container.</td>

@@ -163,7 +163,7 @@ </tr>

<td class="govuk-table__cell ">boolean</td>
<td class="govuk-table__cell">boolean</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Whether the legend also acts as the heading for the page.</td>
<td class="govuk-table__cell">Whether the legend also acts as the heading for the page.</td>

@@ -176,7 +176,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes to add to the fieldset container.</td>
<td class="govuk-table__cell">Optional additional classes to add to the fieldset container.</td>

@@ -189,7 +189,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the fieldset container.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the fieldset container.</td>

@@ -196,0 +196,0 @@ </tr>

@@ -218,7 +218,7 @@ # File upload

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">The name of the input, which is submitted with the form data.</td>
<td class="govuk-table__cell">The name of the input, which is submitted with the form data.</td>

@@ -231,7 +231,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">The id of the input</td>
<td class="govuk-table__cell">The id of the input</td>

@@ -244,7 +244,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional initial value of the input</td>
<td class="govuk-table__cell">Optional initial value of the input</td>

@@ -257,7 +257,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Arguments for the label component. See <a href="../label/README.md#component-arguments">label</a> component.</td>
<td class="govuk-table__cell">Arguments for the label component. See <a href="../label/README.md#component-arguments">label</a> component.</td>

@@ -270,7 +270,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<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>
<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>

@@ -283,7 +283,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<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>
<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>

@@ -296,7 +296,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes to add to the input tag.</td>
<td class="govuk-table__cell">Optional additional classes to add to the input tag.</td>

@@ -309,7 +309,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example accept or data attributes) to add to the input tag.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example accept or data attributes) to add to the input tag.</td>

@@ -316,0 +316,0 @@ </tr>

@@ -110,7 +110,7 @@ # Footer

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Object containing parameters for the meta navigation.</td>
<td class="govuk-table__cell">Object containing parameters for the meta navigation.</td>

@@ -123,7 +123,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Text to add to the meta section of the footer, which will appear below any links specified using meta.items. If meta.html is specified, this option is ignored.</td>
<td class="govuk-table__cell">Text to add to the meta section of the footer, which will appear below any links specified using meta.items. If meta.html is specified, this option is ignored.</td>

@@ -136,7 +136,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">HTML to add to the meta section of the footer, which will appear below any links specified using meta.items. If you do not need to use HTML, use meta.text instead.</td>
<td class="govuk-table__cell">HTML to add to the meta section of the footer, which will appear below any links specified using meta.items. If you do not need to use HTML, use meta.text instead.</td>

@@ -149,7 +149,7 @@ </tr>

<td class="govuk-table__cell ">array</td>
<td class="govuk-table__cell">array</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Array of items for use in the meta section of the footer.</td>
<td class="govuk-table__cell">Array of items for use in the meta section of the footer.</td>

@@ -162,7 +162,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">List item text in the meta section of the footer.</td>
<td class="govuk-table__cell">List item text in the meta section of the footer.</td>

@@ -175,7 +175,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">List item href attribute in the meta section of the footer.</td>
<td class="govuk-table__cell">List item href attribute in the meta section of the footer.</td>

@@ -188,7 +188,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the anchor in the footer meta section.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the anchor in the footer meta section.</td>

@@ -201,7 +201,7 @@ </tr>

<td class="govuk-table__cell ">array</td>
<td class="govuk-table__cell">array</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Array of items for use in the navigation section of the footer.</td>
<td class="govuk-table__cell">Array of items for use in the navigation section of the footer.</td>

@@ -214,7 +214,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Title for a section</td>
<td class="govuk-table__cell">Title for a section</td>

@@ -227,7 +227,7 @@ </tr>

<td class="govuk-table__cell ">integer</td>
<td class="govuk-table__cell">integer</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Amount of columns to display items in navigation section of the footer.</td>
<td class="govuk-table__cell">Amount of columns to display items in navigation section of the footer.</td>

@@ -240,7 +240,7 @@ </tr>

<td class="govuk-table__cell ">array</td>
<td class="govuk-table__cell">array</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Array of items to display in the list in navigation section of the footer.</td>
<td class="govuk-table__cell">Array of items to display in the list in navigation section of the footer.</td>

@@ -253,7 +253,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">List item text in the navigation section of the footer.</td>
<td class="govuk-table__cell">List item text in the navigation section of the footer.</td>

@@ -266,7 +266,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">List item href attribute in the navigation section of the footer. Both `text` and `href` attributes need to be present to create a link.</td>
<td class="govuk-table__cell">List item href attribute in the navigation section of the footer. Both `text` and `href` attributes need to be present to create a link.</td>

@@ -279,7 +279,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the anchor in the footer navigation section.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the anchor in the footer navigation section.</td>

@@ -292,7 +292,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Classes that can be added to the inner container, useful if you want to make the footer full width.</td>
<td class="govuk-table__cell">Classes that can be added to the inner container, useful if you want to make the footer full width.</td>

@@ -305,7 +305,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes to add to the footer component container.</td>
<td class="govuk-table__cell">Optional additional classes to add to the footer component container.</td>

@@ -318,7 +318,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the footer component container.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the footer component container.</td>

@@ -325,0 +325,0 @@ </tr>

@@ -370,7 +370,7 @@ # Header

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">The url of the homepage. Defaults to /</td>
<td class="govuk-table__cell">The url of the homepage. Defaults to /</td>

@@ -383,7 +383,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">The public path for the assets folder. If not provided it defaults to /assets/images</td>
<td class="govuk-table__cell">The public path for the assets folder. If not provided it defaults to /assets/images</td>

@@ -396,7 +396,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Header title that is placed next to GOV.UK. Used for product names (i.e. Pay, Verify)</td>
<td class="govuk-table__cell">Header title that is placed next to GOV.UK. Used for product names (i.e. Pay, Verify)</td>

@@ -409,7 +409,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Header title that is placed next to GOV.UK. Used for product names (i.e. Pay, Verify)</td>
<td class="govuk-table__cell">Header title that is placed next to GOV.UK. Used for product names (i.e. Pay, Verify)</td>

@@ -422,7 +422,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Url for the service name anchor.</td>
<td class="govuk-table__cell">Url for the service name anchor.</td>

@@ -435,7 +435,7 @@ </tr>

<td class="govuk-table__cell ">array</td>
<td class="govuk-table__cell">array</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">An array of navigation item objects.</td>
<td class="govuk-table__cell">An array of navigation item objects.</td>

@@ -448,7 +448,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Text of the navigation item.</td>
<td class="govuk-table__cell">Text of the navigation item.</td>

@@ -461,7 +461,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Url of the navigation item anchor. Both `href` and `text` attributes for navigation items need to be provided to create an item.</td>
<td class="govuk-table__cell">Url of the navigation item anchor. Both `href` and `text` attributes for navigation items need to be provided to create an item.</td>

@@ -474,7 +474,7 @@ </tr>

<td class="govuk-table__cell ">boolean</td>
<td class="govuk-table__cell">boolean</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Flag to mark the navigation item as active or not.</td>
<td class="govuk-table__cell">Flag to mark the navigation item as active or not.</td>

@@ -487,7 +487,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the navigation item anchor.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the navigation item anchor.</td>

@@ -500,7 +500,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional classes that can be added to the navigation section of the header.</td>
<td class="govuk-table__cell">Optional classes that can be added to the navigation section of the header.</td>

@@ -513,7 +513,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional classes that can be added to the container, useful if you want to make the header fixed width.</td>
<td class="govuk-table__cell">Optional classes that can be added to the container, useful if you want to make the header fixed width.</td>

@@ -526,7 +526,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes to add to the header container.</td>
<td class="govuk-table__cell">Optional additional classes to add to the header container.</td>

@@ -539,7 +539,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the header container.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the header container.</td>

@@ -546,0 +546,0 @@ </tr>

@@ -95,7 +95,7 @@ # Hint

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Text or HTML to use within the hint. If `html` is provided, the `text` argument will be ignored.</td>
<td class="govuk-table__cell">Text or HTML to use within the hint. If `html` is provided, the `text` argument will be ignored.</td>

@@ -108,7 +108,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Optional id attribute o add to the hint span tag.</td>
<td class="govuk-table__cell">Optional id attribute o add to the hint span tag.</td>

@@ -121,7 +121,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes to add to the hint span tag.</td>
<td class="govuk-table__cell">Optional additional classes to add to the hint span tag.</td>

@@ -134,7 +134,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the hint span tag.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the hint span tag.</td>

@@ -141,0 +141,0 @@ </tr>

@@ -426,7 +426,7 @@ # Input

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">The id of the input.</td>
<td class="govuk-table__cell">The id of the input.</td>

@@ -439,7 +439,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">The name of the input, which is submitted with the form data.</td>
<td class="govuk-table__cell">The name of the input, which is submitted with the form data.</td>

@@ -452,7 +452,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Type of input control to render. Defaults to "text".</td>
<td class="govuk-table__cell">Type of input control to render. Defaults to "text".</td>

@@ -465,7 +465,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional initial value of the input.</td>
<td class="govuk-table__cell">Optional initial value of the input.</td>

@@ -478,7 +478,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Arguments for the label component. See <a href="../label/README.md#component-arguments">label</a> component.</td>
<td class="govuk-table__cell">Arguments for the label component. See <a href="../label/README.md#component-arguments">label</a> component.</td>

@@ -491,7 +491,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<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>
<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>

@@ -504,7 +504,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<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>
<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>

@@ -517,7 +517,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes add to the input component.</td>
<td class="govuk-table__cell">Optional additional classes add to the input component.</td>

@@ -530,7 +530,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the input component.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the input component.</td>

@@ -537,0 +537,0 @@ </tr>

@@ -91,7 +91,7 @@ # Inset text

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<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>
<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>

@@ -104,7 +104,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional id attribute to add to the inset text container.</td>
<td class="govuk-table__cell">Optional id attribute to add to the inset text container.</td>

@@ -117,7 +117,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes to add to the inset text container.</td>
<td class="govuk-table__cell">Optional additional classes to add to the inset text container.</td>

@@ -130,7 +130,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the inset text container.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the inset text container.</td>

@@ -137,0 +137,0 @@ </tr>

@@ -115,7 +115,7 @@ # Label

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Text or HTML to use within the label. If `html` is provided, the `text` argument will be ignored.</td>
<td class="govuk-table__cell">Text or HTML to use within the label. If `html` is provided, the `text` argument will be ignored.</td>

@@ -128,7 +128,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">The value of the for attribute, the id of the input the label is associated with.</td>
<td class="govuk-table__cell">The value of the for attribute, the id of the input the label is associated with.</td>

@@ -141,7 +141,7 @@ </tr>

<td class="govuk-table__cell ">boolean</td>
<td class="govuk-table__cell">boolean</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Whether the label also acts as the heading for the page.</td>
<td class="govuk-table__cell">Whether the label also acts as the heading for the page.</td>

@@ -154,7 +154,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes to add to the label tag.</td>
<td class="govuk-table__cell">Optional additional classes to add to the label tag.</td>

@@ -167,7 +167,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the label tag.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the label tag.</td>

@@ -174,0 +174,0 @@ </tr>

@@ -112,7 +112,7 @@ # Panel

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Text or HTML for the panel title. If `titleHtml` is provided, the `titleText` argument is ignored.</td>
<td class="govuk-table__cell">Text or HTML for the panel title. If `titleHtml` is provided, the `titleText` argument is ignored.</td>

@@ -125,7 +125,7 @@ </tr>

<td class="govuk-table__cell ">number</td>
<td class="govuk-table__cell">number</td>
<td class="govuk-table__cell ">no</td>
<td class="govuk-table__cell">no</td>
<td class="govuk-table__cell ">Optional heading level, from 1 to 6\. Default is 2.</td>
<td class="govuk-table__cell">Optional heading level, from 1 to 6\. Default is 2.</td>

@@ -138,7 +138,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Text or HTML for the panel content. If `html` is provided, the `text` argument is ignored.</td>
<td class="govuk-table__cell">Text or HTML for the panel content. If `html` is provided, the `text` argument is ignored.</td>

@@ -151,7 +151,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes to add to the panel container.</td>
<td class="govuk-table__cell">Optional additional classes to add to the panel container.</td>

@@ -164,7 +164,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the panel container.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the panel container.</td>

@@ -171,0 +171,0 @@ </tr>

@@ -86,7 +86,7 @@ # Phase banner

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">HTML to use for the phase-banner message. If `html` is provided, the `text` argument will be ignored.</td>
<td class="govuk-table__cell">HTML to use for the phase-banner message. If `html` is provided, the `text` argument will be ignored.</td>

@@ -99,7 +99,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Arguments for the tag object. See <a href="../tag/README.md#component-arguments">tag</a> component.</td>
<td class="govuk-table__cell">Arguments for the tag object. See <a href="../tag/README.md#component-arguments">tag</a> component.</td>

@@ -112,7 +112,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes to add to the phase banner container.</td>
<td class="govuk-table__cell">Optional additional classes to add to the phase banner container.</td>

@@ -125,7 +125,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the phase banner container.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the phase banner container.</td>

@@ -132,0 +132,0 @@ </tr>

@@ -684,7 +684,7 @@ # Radios

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Arguments for the fieldset component (e.g. legend). See <a href="../fieldset/README.md#component-arguments">fieldset</a> component.</td>
<td class="govuk-table__cell">Arguments for the fieldset component (e.g. legend). See <a href="../fieldset/README.md#component-arguments">fieldset</a> component.</td>

@@ -697,7 +697,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<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>
<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>

@@ -710,7 +710,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Arguments for the errorMessage component (e.g. text). See errorMessage component.</td>
<td class="govuk-table__cell">Arguments for the errorMessage component (e.g. text). See errorMessage component.</td>

@@ -723,7 +723,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">String to prefix id for each radio item if no id is specified on each item. If`idPrefix` is not passed, fallback to using the name attribute instead.</td>
<td class="govuk-table__cell">String to prefix id for each radio item if no id is specified on each item. If`idPrefix` is not passed, fallback to using the name attribute instead.</td>

@@ -736,7 +736,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Name attribute for each radio item.</td>
<td class="govuk-table__cell">Name attribute for each radio item.</td>

@@ -749,7 +749,7 @@ </tr>

<td class="govuk-table__cell ">array</td>
<td class="govuk-table__cell">array</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Array of checkbox items objects.</td>
<td class="govuk-table__cell">Array of checkbox items objects.</td>

@@ -762,7 +762,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Text or HTML to use within each radio item label. If `html` is provided, the `text` argument will be ignored.</td>
<td class="govuk-table__cell">Text or HTML to use within each radio item label. If `html` is provided, the `text` argument will be ignored.</td>

@@ -775,7 +775,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Specific id attribute for the radio item. If ommited, then `idPrefix` string will be applied.</td>
<td class="govuk-table__cell">Specific id attribute for the radio item. If ommited, then `idPrefix` string will be applied.</td>

@@ -788,7 +788,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Specific name for the radio item. If ommited, then component global `name` string will be applied.</td>
<td class="govuk-table__cell">Specific name for the radio item. If ommited, then component global `name` string will be applied.</td>

@@ -801,7 +801,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Value for the radio input.</td>
<td class="govuk-table__cell">Value for the radio input.</td>

@@ -814,7 +814,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Provide additional attributes and classes to each radio item label. See [label](../label/README.md#component-arguments) component for more details.</td>
<td class="govuk-table__cell">Provide additional attributes and classes to each radio item label. See [label](../label/README.md#component-arguments) component for more details.</td>

@@ -827,7 +827,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Provide optional hint to each radio item. See `hint` component for more details.</td>
<td class="govuk-table__cell">Provide optional hint to each radio item. See `hint` component for more details.</td>

@@ -840,7 +840,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional divider text to separate radio items, for example the text "or".</td>
<td class="govuk-table__cell">Optional divider text to separate radio items, for example the text "or".</td>

@@ -853,7 +853,7 @@ </tr>

<td class="govuk-table__cell ">boolean</td>
<td class="govuk-table__cell">boolean</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">If true, radio will be checked.</td>
<td class="govuk-table__cell">If true, radio will be checked.</td>

@@ -866,7 +866,7 @@ </tr>

<td class="govuk-table__cell ">boolean</td>
<td class="govuk-table__cell">boolean</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">If true, content provided will be revealed when the item is checked.</td>
<td class="govuk-table__cell">If true, content provided will be revealed when the item is checked.</td>

@@ -879,7 +879,7 @@ </tr>

<td class="govuk-table__cell ">boolean</td>
<td class="govuk-table__cell">boolean</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Provide content for the conditional reveal.</td>
<td class="govuk-table__cell">Provide content for the conditional reveal.</td>

@@ -892,7 +892,7 @@ </tr>

<td class="govuk-table__cell ">boolean</td>
<td class="govuk-table__cell">boolean</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">If true, radio will be disabled.</td>
<td class="govuk-table__cell">If true, radio will be disabled.</td>

@@ -905,7 +905,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the radio input tag.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the radio input tag.</td>

@@ -918,7 +918,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes to add to the radios container.</td>
<td class="govuk-table__cell">Optional additional classes to add to the radios container.</td>

@@ -931,7 +931,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the radios container.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the radios container.</td>

@@ -938,0 +938,0 @@ </tr>

@@ -276,7 +276,7 @@ # Select

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Id for each select box</td>
<td class="govuk-table__cell">Id for each select box</td>

@@ -289,7 +289,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Name property for the select.</td>
<td class="govuk-table__cell">Name property for the select.</td>

@@ -302,7 +302,7 @@ </tr>

<td class="govuk-table__cell ">array</td>
<td class="govuk-table__cell">array</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Array of option items for the select.</td>
<td class="govuk-table__cell">Array of option items for the select.</td>

@@ -315,7 +315,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Value for the option item.</td>
<td class="govuk-table__cell">Value for the option item.</td>

@@ -328,7 +328,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Text for the option item.</td>
<td class="govuk-table__cell">Text for the option item.</td>

@@ -341,7 +341,7 @@ </tr>

<td class="govuk-table__cell ">boolean</td>
<td class="govuk-table__cell">boolean</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Sets the option as the selected.</td>
<td class="govuk-table__cell">Sets the option as the selected.</td>

@@ -354,7 +354,7 @@ </tr>

<td class="govuk-table__cell ">boolean</td>
<td class="govuk-table__cell">boolean</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Sets the option item as disabled.</td>
<td class="govuk-table__cell">Sets the option item as disabled.</td>

@@ -367,7 +367,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to the select option tag.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to the select option tag.</td>

@@ -380,7 +380,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional label text or HTML by specifying value for either text or html keys. See <a href="../label/README.md#component-arguments">label</a> component.</td>
<td class="govuk-table__cell">Optional label text or HTML by specifying value for either text or html keys. See <a href="../label/README.md#component-arguments">label</a> component.</td>

@@ -393,7 +393,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<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>
<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>

@@ -406,7 +406,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<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>
<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>

@@ -419,7 +419,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes to add to the select component.</td>
<td class="govuk-table__cell">Optional additional classes to add to the select component.</td>

@@ -432,7 +432,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the select component.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the select component.</td>

@@ -439,0 +439,0 @@ </tr>

@@ -76,7 +76,7 @@ # Skip link

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Text or HTML to use within the skip link. If `html` is provided, the `text` argument will be ignored.</td>
<td class="govuk-table__cell">Text or HTML to use within the skip link. If `html` is provided, the `text` argument will be ignored.</td>

@@ -89,7 +89,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">The value of the skip link href attribute. Defaults to #content</td>
<td class="govuk-table__cell">The value of the skip link href attribute. Defaults to #content</td>

@@ -102,7 +102,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes to add to the skip link.</td>
<td class="govuk-table__cell">Optional additional classes to add to the skip link.</td>

@@ -115,7 +115,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the skip link.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the skip link.</td>

@@ -122,0 +122,0 @@ </tr>

@@ -27,2 +27,8 @@ [

{
"name": "classes",
"type": "string",
"required": false,
"description": "Classes to add to the table row cell."
},
{
"name": "colspan",

@@ -66,2 +72,8 @@ "type": "integer",

{
"name": "classes",
"type": "string",
"required": false,
"description": "Classes to add to the table head cell."
},
{
"name": "colspan",

@@ -68,0 +80,0 @@ "type": "integer",

@@ -387,7 +387,7 @@ # Table

<td class="govuk-table__cell ">array</td>
<td class="govuk-table__cell">array</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Array of table rows and cells.</td>
<td class="govuk-table__cell">Array of table rows and cells.</td>

@@ -400,7 +400,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Text or HTML for cells in table rows. If `html` is specified, the `text` argument will be ignored.</td>
<td class="govuk-table__cell">Text or HTML for cells in table rows. If `html` is specified, the `text` argument will be ignored.</td>

@@ -413,7 +413,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Specify format of a cell. Currently we only use "numeric".</td>
<td class="govuk-table__cell">Specify format of a cell. Currently we only use "numeric".</td>

@@ -426,7 +426,7 @@ </tr>

<td class="govuk-table__cell ">number</td>
<td class="govuk-table__cell">number</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Specify how many columns a cell extends.</td>
<td class="govuk-table__cell">Specify how many columns a cell extends.</td>

@@ -439,7 +439,7 @@ </tr>

<td class="govuk-table__cell ">number</td>
<td class="govuk-table__cell">number</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Specify how many rows a cell extends.</td>
<td class="govuk-table__cell">Specify how many rows a cell extends.</td>

@@ -452,7 +452,7 @@ </tr>

<td class="govuk-table__cell ">array</td>
<td class="govuk-table__cell">array</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional array of table head cells.</td>
<td class="govuk-table__cell">Optional array of table head cells.</td>

@@ -465,7 +465,7 @@ </tr>

<td class="govuk-table__cell ">array</td>
<td class="govuk-table__cell">array</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional array of table head cells. If `html` is specified, the `text` argument will be ignored.</td>
<td class="govuk-table__cell">Optional array of table head cells. If `html` is specified, the `text` argument will be ignored.</td>

@@ -478,7 +478,7 @@ </tr>

<td class="govuk-table__cell ">number</td>
<td class="govuk-table__cell">number</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Specify how many columns a cell extends.</td>
<td class="govuk-table__cell">Specify how many columns a cell extends.</td>

@@ -491,7 +491,7 @@ </tr>

<td class="govuk-table__cell ">number</td>
<td class="govuk-table__cell">number</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Specify how many rows a cell extends.</td>
<td class="govuk-table__cell">Specify how many rows a cell extends.</td>

@@ -504,7 +504,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Specify format of a cell. Currently we only use "numeric".</td>
<td class="govuk-table__cell">Specify format of a cell. Currently we only use "numeric".</td>

@@ -517,7 +517,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional caption text.</td>
<td class="govuk-table__cell">Optional caption text.</td>

@@ -530,7 +530,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional classes for caption text size. Class should correspond to the available typography heading classes.</td>
<td class="govuk-table__cell">Optional classes for caption text size. Class should correspond to the available typography heading classes.</td>

@@ -543,7 +543,7 @@ </tr>

<td class="govuk-table__cell ">boolean</td>
<td class="govuk-table__cell">boolean</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">If set to true, first cell in table row will be a TH instead of a TD.</td>
<td class="govuk-table__cell">If set to true, first cell in table row will be a TH instead of a TD.</td>

@@ -556,7 +556,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes to add to the table container.</td>
<td class="govuk-table__cell">Optional additional classes to add to the table container.</td>

@@ -569,7 +569,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the table container.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the table container.</td>

@@ -576,0 +576,0 @@ </tr>

@@ -261,7 +261,7 @@ # Tabs

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional id</td>
<td class="govuk-table__cell">Optional id</td>

@@ -274,7 +274,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes</td>
<td class="govuk-table__cell">Optional additional classes</td>

@@ -287,7 +287,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the tabs container</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the tabs container</td>

@@ -300,7 +300,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">String to prefix id for each tab item if no id is specified on each item</td>
<td class="govuk-table__cell">String to prefix id for each tab item if no id is specified on each item</td>

@@ -313,7 +313,7 @@ </tr>

<td class="govuk-table__cell ">array</td>
<td class="govuk-table__cell">array</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Array of tab items</td>
<td class="govuk-table__cell">Array of tab items</td>

@@ -326,7 +326,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Specific id attribute for the tab item. If ommited, then `idPrefix` string will be applied.</td>
<td class="govuk-table__cell">Specific id attribute for the tab item. If ommited, then `idPrefix` string will be applied.</td>

@@ -339,7 +339,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">The text label of a tab item</td>
<td class="govuk-table__cell">The text label of a tab item</td>

@@ -352,7 +352,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the tab item anchor.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the tab item anchor.</td>

@@ -365,7 +365,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Text or HTML to use within each tab panel. If `html` is provided, the `text` argument will be ignored.</td>
<td class="govuk-table__cell">Text or HTML to use within each tab panel. If `html` is provided, the `text` argument will be ignored.</td>

@@ -378,7 +378,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the tab panel.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the tab panel.</td>

@@ -385,0 +385,0 @@ </tr>

@@ -96,7 +96,7 @@ # Tag

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Text or HTML to use within for the tag component. If `html` is provided, the `text` argument will be ignored.</td>
<td class="govuk-table__cell">Text or HTML to use within for the tag component. If `html` is provided, the `text` argument will be ignored.</td>

@@ -109,7 +109,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes to add to the tag container.</td>
<td class="govuk-table__cell">Optional additional classes to add to the tag container.</td>

@@ -122,7 +122,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the tag container.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the tag container.</td>

@@ -129,0 +129,0 @@ </tr>

@@ -212,7 +212,7 @@ # Textarea

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">The id of the textarea</td>
<td class="govuk-table__cell">The id of the textarea</td>

@@ -225,7 +225,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Text or element id to add to the `aria-describedby` attribute to provide description for screenreader users.</td>
<td class="govuk-table__cell">Text or element id to add to the `aria-describedby` attribute to provide description for screenreader users.</td>

@@ -238,7 +238,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">The name of the textarea, which is submitted with the form data.</td>
<td class="govuk-table__cell">The name of the textarea, which is submitted with the form data.</td>

@@ -251,7 +251,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional number of textarea rows (default is 5 rows).</td>
<td class="govuk-table__cell">Optional number of textarea rows (default is 5 rows).</td>

@@ -264,7 +264,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional initial value of the textarea.</td>
<td class="govuk-table__cell">Optional initial value of the textarea.</td>

@@ -277,7 +277,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Arguments for the label component. See <a href="../label/README.md#component-arguments">label</a> component.</td>
<td class="govuk-table__cell">Arguments for the label component. See <a href="../label/README.md#component-arguments">label</a> component.</td>

@@ -290,7 +290,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<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>
<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>

@@ -303,7 +303,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<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>
<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>

@@ -316,7 +316,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes to add to the textarea tag.</td>
<td class="govuk-table__cell">Optional additional classes to add to the textarea tag.</td>

@@ -329,7 +329,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the textarea tag.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the textarea tag.</td>

@@ -336,0 +336,0 @@ </tr>

@@ -82,7 +82,7 @@ # Warning text

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">Text or HTML for the warning text content. If `html` is provided, the `text` argument is ignored.</td>
<td class="govuk-table__cell">Text or HTML for the warning text content. If `html` is provided, the `text` argument is ignored.</td>

@@ -95,7 +95,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">Yes</td>
<td class="govuk-table__cell">Yes</td>
<td class="govuk-table__cell ">The fallback text for the icon</td>
<td class="govuk-table__cell">The fallback text for the icon</td>

@@ -108,7 +108,7 @@ </tr>

<td class="govuk-table__cell ">string</td>
<td class="govuk-table__cell">string</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Optional additional classes to add to the warning-text container.</td>
<td class="govuk-table__cell">Optional additional classes to add to the warning-text container.</td>

@@ -121,7 +121,7 @@ </tr>

<td class="govuk-table__cell ">object</td>
<td class="govuk-table__cell">object</td>
<td class="govuk-table__cell ">No</td>
<td class="govuk-table__cell">No</td>
<td class="govuk-table__cell ">Any extra HTML attributes (for example data attributes) to add to the warning-text container.</td>
<td class="govuk-table__cell">Any extra HTML attributes (for example data attributes) to add to the warning-text container.</td>

@@ -128,0 +128,0 @@ </tr>

{
"name": "govuk-frontend",
"description": "GOV.UK Frontend contains the code you need to start building a user interface for government platforms and services.",
"version": "2.1.0",
"version": "2.2.0",
"main": "all.js",

@@ -6,0 +6,0 @@ "sass": "all.scss",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc