Releases: oscarotero/form-manager
Releases · oscarotero/form-manager
5.0.3
5.0.2
- Fixed select attributes
- Ignored tests and development files on export
5.0.1
- Fixed Range field
5.0
Breaking changes:
- Renamed
$field->isValid()
to$field->validate()
. - Removed the distinction between Fields and Containers. Now all elements are Fields.
- Added a wrapper (
<div>
) to all fields. - Changed the locales of some validators.
4.7.3
4.7.2
- Fixed checkboxes loading the value
0
4.7.1
- Fixed min attribute with the value
""
- Fixed checkboxes with the value
0
- Number/Range inputs returns integer/float values instead strings
4.7.0
The builder is instantiable. Example:
use FormManager\Builder as F;
use FormManager\Factory;
//Static mode:
$text = F::text();
//Object oriented mode:
$f = new F(new Factory());
$text = $f->text();
4.6.2
$input->error()
no longer execute $input->validate()
automatically. This prevent display required inputs with errors on empty form
4.6.1
Bug fixes, renamed some classes/interfaces/traits, etc