Releases: kevinkosterr/vue3-form-generator
Releases · kevinkosterr/vue3-form-generator
0.4.0
🚨 Breaking changes
- Validators are now exported differently (16b636f);
zxcvbn
has been removed fromFieldPassword.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
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
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
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
andmaxLength
; - Default validators, such as
required
will now automatically be added to the field.
- Removed
classes
prop fromFormGenerator.vue
as the built-inclass
prop would suffice;
0.1.0-beta
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;