-
Notifications
You must be signed in to change notification settings - Fork 24
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
WCAG 2.1: Support input attributes for dates and addresses #9
WCAG 2.1: Support input attributes for dates and addresses #9
Conversation
We have a security vulnerability in
No fix is available until node-sass@5 as upgrading to node-gyp@4 (with the |
I've updated |
This is great, thanks Colin. Would you do me a favour and just remove any changes to the |
@lhokktyn Those commits are now removed, including the |
In both cases, I wonder if it might allow us more flexibility to place the user-specified values after the defaults, so they can override those defaults. For example, instead of:
Use:
Clearly this would break rendering if those values were overridden with incompatible equivalents (e.g. the What do you think? |
@lhokktyn Yeah I'd prefer this too, but noticed a precedent was already set to do the opposite. I'm happy if you are? I'll switch it around. |
Good shout. What about introducing a common approach along the lines of:
So in the above case we might have:
|
Signed-off-by: Colin Rotherham <work@colinr.com>
Signed-off-by: Colin Rotherham <work@colinr.com>
Latest push includes the “overridable, user, mandatory” merge order feedback. Thanks 😊 |
Merged internally (f54c402). Note: reversed order of merging stated above to prevent attributes like |
This commits prepares us for WCAG 2.1 Input Purposes for User Interface Components
https://www.w3.org/TR/WCAG21/#input-purposes
Each date input can now have customisable params
Using the
items[]
array as we're extendinggovukDateInput()
Each address line can also do the same