navody-digital-frontend
Version:
Navody.Digital Frontend contains the code you need to start building a user interface for navody.digital
62 lines • 1.88 kB
JSON
{
"component": "back-link",
"fixtures": [
{
"name": "default",
"options": {
"href": "#"
},
"html": "<a href=\"#\" class=\"govuk-back-link\">Back</a>",
"hidden": false
},
{
"name": "with custom text",
"options": {
"href": "#",
"text": "Back to home"
},
"html": "<a href=\"#\" class=\"govuk-back-link\">Back to home</a>",
"hidden": false
},
{
"name": "classes",
"options": {
"classes": "app-back-link--custom-class",
"href": "#"
},
"html": "<a href=\"#\" class=\"govuk-back-link app-back-link--custom-class\">Back</a>",
"hidden": true
},
{
"name": "html as text",
"options": {
"text": "<b>Home</b>",
"href": "#"
},
"html": "<a href=\"#\" class=\"govuk-back-link\"><b>Home</b></a>",
"hidden": true
},
{
"name": "html",
"options": {
"html": "<b>Back</b>",
"href": "#"
},
"html": "<a href=\"#\" class=\"govuk-back-link\"><b>Back</b></a>",
"hidden": true
},
{
"name": "attributes",
"options": {
"href": "#",
"html": "<b>Back to home</b>",
"attributes": {
"data-test": "attribute",
"aria-label": "Back to home"
}
},
"html": "<a href=\"#\" class=\"govuk-back-link\" data-test=\"attribute\" aria-label=\"Back to home\"><b>Back to home</b></a>",
"hidden": true
}
]
}