Skip to content

Releases: kevinkosterr/vue3-form-generator

0.4.0

24 Sep 14:19
256bb3e
Compare
Choose a tag to compare
0.4.0 Pre-release
Pre-release

🚨 Breaking changes

  • Validators are now exported differently (16b636f);
  • zxcvbn has been removed from FieldPassword.vue and instead uses RegEx to determine strength, this means there will be no more suggestions nor warnings (2cd8f19);

⬆️ Improvements and features

  • Bundle size has been decreased significantly;
  • Fields now use the computed model value, instead of accessing it directly each time;
  • Component aliases have been added! 🆕

0.3.1-beta

20 Sep 13:52
af80032
Compare
Choose a tag to compare
0.3.1-beta Pre-release
Pre-release

Fixed

  • Form errors would show up at the bottom of the form, this would display an empty array when without errors

0.3.0-beta

19 Sep 22:01
Compare
Choose a tag to compare
0.3.0-beta Pre-release
Pre-release

Fixes

  • Fixed checked state for FieldSwitch when default is true;

Features

  • Hints: added (dynamic) field hints;
  • Visibility: added (dynamic) field visibility;

Upgrades

  • Upgraded Vue.js version to 3.5+

0.2.0-beta

17 Sep 19:52
Compare
Choose a tag to compare
0.2.0-beta Pre-release
Pre-release

Release notes:

  • 🆕 Added a simple switch field;
  • Fixed bug when validator(s) provided was/were of type string inside the schema;
  • Added some more validators: e.g. mobileNumberNL, number, minLength and maxLength;
  • Default validators, such as required will now automatically be added to the field.

⚠️ Breaking:

  • Removed classes prop from FormGenerator.vue as the built-in class prop would suffice;

0.1.0-beta

14 Sep 08:38
Compare
Choose a tag to compare
0.1.0-beta Pre-release
Pre-release

Release notes:

  • Added basic fields, like FieldButton, FieldSubmit, FieldCheckbox, FieldInput etc.
  • Added Password field with built-in strength meter, using zxcvbn;
  • Added Basic validation;
  • Custom fields can be added;