Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Let tooltip focusable #148

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Next

* Add new "list/list item" element where it's possible to sort the list with checkbox via drag and drop or keyboard
* Fix radio button survey validation
* Let the radio tooltip (info) focusable in the form

## [1.4.8] - 11.10.2024
* export text element with .editor() function where htmlEditorConfig can be customized
Expand Down
2 changes: 1 addition & 1 deletion content-elements/form/radio/prototype/template.twig
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<div class="form-label-and-info-text">
<label class="form-label pt-0">{{ radioGroupLabelText }}</label>
<div data-bsi-element-part="{{ radioFormTextPartId }}" class="form-text">{{ radioInfoText }}</div>
<i class="bi bi-info-circle" data-bs-toggle="tooltip" data-bs-custom-class="bsi-tooltip" role="tooltip" aria-label="{{ radioInfoText }}"></i>
<i class="bi bi-info-circle" data-bs-toggle="tooltip" data-bs-custom-class="bsi-tooltip" tabindex="0" role="tooltip" aria-label="{{ radioInfoText }}"></i>
</div>
<div data-bsi-radio-group="" class="form-radio">
<div class="form-check" data-bsi-radio-item="">
Expand Down