Skip to content

Releases: oscarotero/form-manager

5.0.3

18 May 15:33
Compare
Choose a tag to compare
  • Fixed name losing issue #61
  • Fixed validators of children elements not being executed

5.0.2

11 May 18:33
Compare
Choose a tag to compare
  • Fixed select attributes
  • Ignored tests and development files on export

5.0.1

04 May 18:28
Compare
Choose a tag to compare
  • Fixed Range field

5.0

04 May 17:56
Compare
Choose a tag to compare
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

14 Apr 10:35
Compare
Choose a tag to compare

Fixed select containing options with values like "000", "001", etc... #60

4.7.2

06 Oct 20:11
Compare
Choose a tag to compare
  • Fixed checkboxes loading the value 0

4.7.1

06 Oct 19:48
Compare
Choose a tag to compare
  • Fixed min attribute with the value ""
  • Fixed checkboxes with the value 0
  • Number/Range inputs returns integer/float values instead strings

4.7.0

12 Aug 18:39
Compare
Choose a tag to compare

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

12 Jul 17:16
Compare
Choose a tag to compare

$input->error() no longer execute $input->validate() automatically. This prevent display required inputs with errors on empty form

4.6.1

12 Jul 12:31
Compare
Choose a tag to compare

Bug fixes, renamed some classes/interfaces/traits, etc