-
Notifications
You must be signed in to change notification settings - Fork 12
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
EVER-14024 : Form : Implemented form/input HTML5 ValidityState valida… #321
base: master
Are you sure you want to change the base?
EVER-14024 : Form : Implemented form/input HTML5 ValidityState valida… #321
Conversation
…tion, integrated with custom validation.
I re-forked this since the changes are pretty big and we probably want to start the commentary over. |
</Form> | ||
); | ||
|
||
describe('<Form />', () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need something like it('handles native events', ...
.
'tooShort', | ||
'typeMismatch', | ||
'valueMissing', | ||
]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Meh. Brittle.
Much of the discussion, and advise by @pixelbandito in mikemfleming:FORM-292 is still relevant and needs to be addressed after we've gone over the larger issues related to the |
src/components/Form/README.md
Outdated
@@ -0,0 +1,3 @@ | |||
# \<Form\> | |||
|
|||
Add your documentation for the `Form` component here. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Flesh ValidityState
out, then get busy.
Finally got around to reading the validity state docs, looks good! |
This is looking really good. I know there's some stuff left to do, at least around documentation, but if you want to rebase on master / merge master in, and push this so we can all play with it, I'm ok with that. |
…tion, integrated with custom validation.
Working draft, needs better tests, examples, PR summary.