Releases: sir-dunxalot/ember-easy-form-extensions
Ember 2.0+ Compatibility
Form components have been removed. This addon was never meant to provide all form components but was forced to while Ember EasyForm has no 1.13+ compatibility. Now, Ember EasyForm has a 1.0.0.rc-1
release.
Better still, this library no longers requires Ember EasyForm and can be used with an form components, including your own or those of a library like Ember Paper, Ember EasyForm, Ember Rapid Forms, etc.
Ember 2.0+ Compatibility
This is a prerelease that uses Easy Form's 1.0.0-rc.1
. As such, most form components have been removed. The rest of the functionality is very similar to pre-1.0 versions.
Open an issue if you'd like to test this and are having trouble implementing it.
Removed log statements
No functionality change.
Class name binding hotfix
Fixes control-valid
class name binding so it behaves as expected.
Ember CLI-ified Easy Form for Ember ^1.13.0
A significant refactoring of the entire addon to provide compatibility and stability for Ember 1.13 and beyond. Documentation is now housed in the wiki.
Test coverage increased.
Adds tmp/ to .npmignore
Merge pull request #30 from sir-dunxalot/develop Adds tmp/ to .npmignore
Ember 1.11+ Compatibility
This beta release is the first attempt at updating Easy Form to work with Ember 1.11+. Several key API changes have been made. Documentation can be found in this branch's readme.
To install and test the beta version, add the following to your package.json:
"ember-easy-form-extensions": "sir-dunxalot/ember-easy-form-extensions#ember-1.11",
Removed annoying class name binding
0.2.10 Hotfix for class name binding
data-test added to checkboxes
You can not target easy form checkboxes in test suites using data-test:
{{input someProperty as='checkbox' dataTest='some-checkbox'}}
Ember.$.find('[data-test="some-checkbox"]');
Developer friendly promise asserts
Adds the ability for the addon to check whether a handler or custom validator returns a promise and, if it doesn't, shows an assertion error.