-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 2835/bug/ons-grid__col-sticky-css-functional…
…ity-is-broken
- Loading branch information
Showing
11 changed files
with
87 additions
and
6 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
...nents_timeout-panel_example-panel-with-timeout-warning_0_document_0_desktop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
...onents_timeout-panel_example-panel-with-timeout-warning_0_document_1_tablet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions
4
...onents_timeout-panel_example-panel-with-timeout-warning_0_document_2_mobile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions
3
...test__patterns_names_example-name-multiple-input-field_0_document_0_desktop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions
3
...-test__patterns_names_example-name-multiple-input-field_0_document_1_tablet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions
3
...-test__patterns_names_example-name-multiple-input-field_0_document_2_mobile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions
3
...r-test__patterns_names_example-name-single-input-field_0_document_0_desktop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions
3
...vr-test__patterns_names_example-name-single-input-field_0_document_1_tablet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions
3
...vr-test__patterns_names_example-name-single-input-field_0_document_2_mobile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{% from "components/input/_macro.njk" import onsInput %} | ||
{% from "components/question/_macro.njk" import onsQuestion %} | ||
|
||
{% block main %} | ||
{% call onsQuestion({ | ||
"title": "What is your name?", | ||
"legendIsQuestionTitle": true, | ||
"submitButton": true | ||
}) %} | ||
<form action="#0"> | ||
{{ | ||
onsInput({ | ||
"id": "first-name", | ||
"name": "first-name", | ||
"label": { | ||
"text": "First name" | ||
} | ||
}) | ||
}} | ||
{{ | ||
onsInput({ | ||
"id": "middle-names", | ||
"type": "middle-names", | ||
"label": { | ||
"text": "Middle names" | ||
} | ||
}) | ||
}} | ||
{{ | ||
onsInput({ | ||
"id": "last-name", | ||
"name": "last-name", | ||
"label": { | ||
"text": "Last name" | ||
} | ||
}) | ||
}} | ||
</form> | ||
{% endcall %} | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{% from "components/input/_macro.njk" import onsInput %} | ||
{% from "components/question/_macro.njk" import onsQuestion %} | ||
|
||
{% block main %} | ||
{% call onsQuestion({ | ||
"title": "What is your name?", | ||
"legendIsQuestionTitle": true, | ||
"submitButton": true | ||
}) %} | ||
<form action="#0"> | ||
{{ | ||
onsInput({ | ||
"id": "fullname-example-input", | ||
"type": "full-name", | ||
"autocomplete": "full-name", | ||
"label": { | ||
"text": "Full name" | ||
} | ||
}) | ||
}} | ||
</form> | ||
{% endcall %} | ||
{% endblock %} |