chore: bump patch form

This commit is contained in:
Ayo 2022-10-23 23:25:58 +02:00
parent 715eaaa408
commit 819d6e4526
3 changed files with 15 additions and 12 deletions

View file

@ -1,24 +1,27 @@
### v0.5.1
- fix for dynamic import of validator causing errors (breaks independence)
## v0.5.0 ## v0.5.0
- server-rendered validation errors (when control was set with invalid value) - server-rendered validation errors (when control was set with invalid value)
- radio control accepts array of value or RadioOption - radio control accepts array of value or RadioOption
- added tests for form components - added tests for form components
## v0.4.5 ### v0.4.5
- update project documentations - update project documentations
## v0.4.4 ### v0.4.4
- `validators` property in ControlConfig to set validators for a control - `validators` property in ControlConfig to set validators for a control
## v0.4.1 ### v0.4.1
- set `showValidationHints` to true to show validation hints - set `showValidationHints` to true to show validation hints
## v0.3.0 ## v0.3.0
- new control configuration type `ControlConfig` - new control configuration type `ControlConfig`
## v0.2.7 ### v0.2.7
- updated project logo - updated project logo
## v0.2.6 ### v0.2.6
- support single `FormGroup` as input to the `Form` component - support single `FormGroup` as input to the `Form` component
- implement `Form` component input prop `theme` - implement `Form` component input prop `theme`
- add initial implementation of `FormControl` `isPristine` and `isValid` states - add initial implementation of `FormControl` `isPristine` and `isValid` states
@ -26,14 +29,14 @@
- implement the submitControl Form input prop - implement the submitControl Form input prop
- implement the FormControl placeholder attribute - implement the FormControl placeholder attribute
## v0.2.4 to v0.2.5 ### v0.2.4 to v0.2.5
- update package README - update package README
- update dependencies - update dependencies
## v0.2.2 ### v0.2.2
- initial light and dark mode scaffold - initial light and dark mode scaffold
- update package README - update package README
## v0.2.1 ### v0.2.1
- FormGroup.get(name) - returns the FormControl with matching name - FormGroup.get(name) - returns the FormControl with matching name
- FormControl.setValue(value) - sets the FormControl value - FormControl.setValue(value) - sets the FormControl value

View file

@ -1,7 +1,7 @@
{ {
"name": "@astro-reactive/form", "name": "@astro-reactive/form",
"description": "The Reactive Form component for Astro 🔥", "description": "The Reactive Form component for Astro 🔥",
"version": "0.5.0", "version": "0.5.1",
"repository": "https://github.com/ayoayco/astro-reactive-library", "repository": "https://github.com/ayoayco/astro-reactive-library",
"homepage": "https://github.com/ayoayco/astro-reactive-library/blob/main/packages/form/README.md", "homepage": "https://github.com/ayoayco/astro-reactive-library/blob/main/packages/form/README.md",
"author": { "author": {

View file

@ -1,12 +1,12 @@
## v0.1.0 ## v0.1.0
- support server-rendered validation for forms - support server-rendered validation for forms
## v0.0.4 ### v0.0.4
- update project documentation - update project documentation
## v0.0.3 ### v0.0.3
- update examples on the README - update examples on the README
## v0.0.1 ### v0.0.1
- Validators - Validators
- validator functions - validator functions