Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
1.2.0 (feature release)
🆕 New features:
Allow for optional divider between radio items
You can now provide a divider item (e.g "or") to separate items
(PR #849)
Allow og:image meta tag url to be set independantly
Image url for the opengraph image needs to be absolute and
can now be overwritten by setting the
assetUrl
variable.(PR #847)
Only underline the logo in the header on underline when users have overridden
colours in their browser, rather than it appearing underlined all the time
(PR #926)
Allow for optional hint for each radio and checkbox item
You can now pass a hint object (or add in html) to each radio
and checkbox item to display the hint
(PR #846)
Allow additional classes to be added to the radio and checkbox items
You can now provide
label: { classes: 'extra-class' }
to each item.(PR #880)
🔧 Fixes:
Replace conflicting
js-hidden
class used within the tabs component with a new modifier class.Because this class is defined and used within the JavaScript, no markup changes are required.
(PR #916)
Use
get-function
when calling a Sass function as passing a string to `call()``is deprecated and will be illegal in Sass 4.0
(PR #919)
Fix flash of unstyled content with conditional reveals (Radios and Checkboxes)
If the conditional reveal JavaScript is slow to execute it can result in showing the user their contents briefly which can be jarring.
(PR #885)