Skip to content

Releases: maestrooo/ember-cli-html5-validation

v0.0.11

28 Dec 16:43
Compare
Choose a tag to compare
  • Remove "focusout" listener when "keyup" is registered
  • Refactor how Ember-Data errors are extracted to be more efficient

v0.0.10

26 Dec 13:34
Compare
Choose a tag to compare
  • Depending on the input type (select or input), we now attach more specialized listeners

v0.0.9

12 Dec 09:43
Compare
Choose a tag to compare
  • Remove useless listeners and fix possible memory leaks

v0.0.8

09 Dec 10:37
Compare
Choose a tag to compare
  • Add the ARIA role to "alert" for error message (accessibility)
  • If a textarea has a required attribute and contains only blank spaces, it will trigger a "required" error message. This is the most common use case, and we cannot use the "pattern" attribute because it's not supported on textarea.

v0.0.7

04 Dec 13:03
Compare
Choose a tag to compare
  • Add validation for <select> element

v0.0.6

24 Nov 21:31
Compare
Choose a tag to compare
  • Improve UX: previously, if you submitted a form with an error like "Input is required", the error message used to stick to the field until you focused out, which was a bit bad from a UX point of view. Now, once a field has been validated once, we attach the validation also on keyup event, so that error message is gone as soon as possible. The reason I don't attach the listener directly on keyup is that because on initial typing, having the error message showing as you type is a bit annoying (especially on fields like "email").

v0.0.5

14 Nov 08:51
Compare
Choose a tag to compare
  • Fix a bug in latest EmberJS

v0.0.4

13 Nov 20:58
Compare
Choose a tag to compare
  • Properly adds the novalidate attribute to forms to prevent built-in browser navigation.
  • Make events usage in validatable-input mixin more consistent.

v0.0.3

21 Oct 10:42
Compare
Choose a tag to compare
  • Update URL package

v0.0.2

21 Oct 10:39
Compare
Choose a tag to compare
  • Fix various bugs
  • Add documentation