ember-form-master-2000
ember-form-master-2000 copied to clipboard
A simple form builder for Ember built as an Ember-CLI addon.
Bumps [node-fetch](https://github.com/node-fetch/node-fetch) from 2.6.5 to 2.6.7. Release notes Sourced from node-fetch's releases. v2.6.7 Security patch release Recommended to upgrade, to not leak sensitive cookie and authentication header information to 3th...
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.14.5 to 1.14.8. Commits 3d81dc3 Release version 1.14.8 of the npm package. 62e546a Drop confidential headers across schemes. 2ede36d Release version 1.14.7 of the npm package. 8b347cb...
Bumps [nanoid](https://github.com/ai/nanoid) from 3.1.30 to 3.2.0. Changelog Sourced from nanoid's changelog. Change Log This project adheres to Semantic Versioning. 3.2 Added --size and --alphabet arguments to binary (by Vitaly Baev)....
## What Changed & Why This change allows passing a `disabled` widget attribute to disable a checkbox. ## Testing List step-by-step how to test the changes. - [ ] Add...
## What Changed & Why The `radio` widget uses a `name` attribute, but the `radio-group` widget doesn't actually pass that param to `radio`, so radio buttons in a radio group...
Hi! We're on 2.1.4 of this addon, and I was curious what breaking changes were introduced in 3.0.0?
``` {{fm-field widget='input' label='This is a label' placeholder='This is a placeholder' class='myInput' value=form.name.value errors=form.error.value data-test-input='name' }} ``` No matter which position I place the data-test attribute, and no matter which...
Is there any support for standard html attributes such as `disabled` or `readonly` or standard input types such as `number` or `email`?
Possibly closes #3 ? If you're ok with this approach, I'll update the README as well.
Given an `fm-submit` with default class of `btn btn-primary` it would be nice to be able to do the following: ``` {{fm-submit value='Submit' class='float-right'}} ``` and have it generate ```...