diff --git a/packages/form/RELEASE.md b/packages/form/RELEASE.md index 2764a41..2322af4 100644 --- a/packages/form/RELEASE.md +++ b/packages/form/RELEASE.md @@ -1,24 +1,27 @@ +### v0.5.1 +- fix for dynamic import of validator causing errors (breaks independence) + ## v0.5.0 - server-rendered validation errors (when control was set with invalid value) - radio control accepts array of value or RadioOption - added tests for form components -## v0.4.5 +### v0.4.5 - update project documentations -## v0.4.4 +### v0.4.4 - `validators` property in ControlConfig to set validators for a control -## v0.4.1 +### v0.4.1 - set `showValidationHints` to true to show validation hints ## v0.3.0 - new control configuration type `ControlConfig` -## v0.2.7 +### v0.2.7 - updated project logo -## v0.2.6 +### v0.2.6 - support single `FormGroup` as input to the `Form` component - implement `Form` component input prop `theme` - add initial implementation of `FormControl` `isPristine` and `isValid` states @@ -26,14 +29,14 @@ - implement the submitControl Form input prop - implement the FormControl placeholder attribute -## v0.2.4 to v0.2.5 +### v0.2.4 to v0.2.5 - update package README - update dependencies -## v0.2.2 +### v0.2.2 - initial light and dark mode scaffold - update package README -## v0.2.1 +### v0.2.1 - FormGroup.get(name) - returns the FormControl with matching name - FormControl.setValue(value) - sets the FormControl value diff --git a/packages/form/package.json b/packages/form/package.json index 5271e0d..dd3fc10 100644 --- a/packages/form/package.json +++ b/packages/form/package.json @@ -1,7 +1,7 @@ { "name": "@astro-reactive/form", "description": "The Reactive Form component for Astro 🔥", - "version": "0.5.0", + "version": "0.5.1", "repository": "https://github.com/ayoayco/astro-reactive-library", "homepage": "https://github.com/ayoayco/astro-reactive-library/blob/main/packages/form/README.md", "author": { diff --git a/packages/validator/RELEASE.md b/packages/validator/RELEASE.md index 6d47e24..070b44f 100644 --- a/packages/validator/RELEASE.md +++ b/packages/validator/RELEASE.md @@ -1,12 +1,12 @@ ## v0.1.0 - support server-rendered validation for forms -## v0.0.4 +### v0.0.4 - update project documentation -## v0.0.3 +### v0.0.3 - update examples on the README -## v0.0.1 +### v0.0.1 - Validators - validator functions