chore: Update version for release (#293)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2023-03-25 21:15:40 +01:00 committed by GitHub
parent 334a4c552b
commit c2384944fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 66 additions and 13 deletions

View file

@ -1,8 +0,0 @@
---
"create-astro-reactive": patch
"@astro-reactive/validator": patch
"@astro-reactive/form": patch
"@astro-reactive/docs": patch
---
- Update documentation links to release notes

View file

@ -1,5 +1,11 @@
# @astro-reactive/docs
## 0.0.3
### Patch Changes
- 334a4c5: - Update documentation links to release notes
## 0.0.2
### Patch Changes

View file

@ -1,7 +1,7 @@
{
"name": "@astro-reactive/docs",
"type": "module",
"version": "0.0.2",
"version": "0.0.3",
"private": true,
"scripts": {
"dev": "astro dev",

View file

@ -1,5 +1,11 @@
# create-astro-reactive
## 0.0.3
### Patch Changes
- 334a4c5: - Update documentation links to release notes
## 0.0.2
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "create-astro-reactive",
"version": "0.0.2",
"version": "0.0.3",
"description": "Create a new astro-reactive app",
"main": "index.js",
"devDependencies": {},

View file

@ -1,5 +1,13 @@
# @astro-reactive/form
## 0.8.1
### Patch Changes
- 334a4c5: - Update documentation links to release notes
- Updated dependencies [334a4c5]
- @astro-reactive/validator@0.3.4
## 0.8.0
### Minor Changes
@ -26,37 +34,46 @@
- @astro-reactive/common@0.1.8
## v0.7.0
- project chores: updates on how the packages share common files, initial codecov set up
- documentation updates: Readme examples and API docs update
- support for Astro v2
## v0.6.7
- fix form method type to accept: 'get', 'post', 'dialog'
## v0.6.6
- implement validation hooks with form's `triggerValidationOn` prop
- types and intellisense improvements
- validation support for RadioGroup
- form's `action` and `method` props
## v0.6.5
- fix deps
## v0.6.4
- Form component's new `validateOnLoad` property
- FormGroup.setValue() method to set values for the whole form
- fix for Radio Group's inputs not having unique IDs
## v0.6.3
- make `Checkbox.checked` optional
## v0.6.2
- fix broken `ControlConfig`
## v0.6.1
- fix wrong dependency version
## v0.6.0
- deprecate `labelPosition` prop
- implement TextArea control
- add method `setValidators` to FormControl
@ -64,32 +81,41 @@
- implement Dropdown control
## v0.5.1 - v0.5.2
- use @astro-reactive/common
## 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
- update project documentations
## v0.4.4
- `validators` property in ControlConfig to set validators for a control
## v0.4.1
- set `showValidationHints` to true to show validation hints
## v0.3.0
- new control configuration type `ControlConfig`
## v0.2.7
- updated project logo
## 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
@ -98,13 +124,16 @@
- implement the FormControl placeholder attribute
## v0.2.4 to v0.2.5
- update package README
- update dependencies
## v0.2.2
- initial light and dark mode scaffold
- update package README
## v0.2.1
- FormGroup.get(name) - returns the FormControl with matching name
- FormControl.setValue(value) - sets the FormControl value

View file

@ -1,7 +1,7 @@
{
"name": "@astro-reactive/form",
"description": "The Reactive Form component for Astro 🔥",
"version": "0.8.0",
"version": "0.8.1",
"repository": "https://github.com/astro-reactive/astro-reactive",
"homepage": "https://astro-reactive.dev",
"author": "astro-reactive",

View file

@ -1,5 +1,11 @@
# @astro-reactive/validator
## 0.3.4
### Patch Changes
- 334a4c5: - Update documentation links to release notes
## 0.3.3
### Patch Changes
@ -18,48 +24,62 @@
- Updated dependencies [414a0bd]
- @astro-reactive/common@0.1.8
## v0.3.0
- project chores: updates on how the packages share common files, initial codecov set up
- documentation updates: Readme examples and API docs update
- support for Astro v2
## v0.2.7
- support form method type to accept: 'get', 'post', 'dialog'
## v0.2.6
- implement validation hooks with form's `triggerValidationOn` prop
- types and intellisense improvements
## v0.2.5
- fix deps
## v0.2.4
- Validation categories: Error, Warning, Info
## v0.2.3
- make `Checkbox.checked` optional
## v0.2.2
- fix broken `ControlConfig`
## v0.2.1
- fix wrong dependency version
## v0.2.0
- deprecate `labelPosition` prop
## v0.1.1
- use @astro-reactive/common
## v0.1.0
- support server-rendered validation for forms
## v0.0.4
- update project documentation
## v0.0.3
- update examples on the README
## v0.0.1
- Validators
- validator functions

View file

@ -1,7 +1,7 @@
{
"name": "@astro-reactive/validator",
"description": "Form validation library for Astro 🔥",
"version": "0.3.3",
"version": "0.3.4",
"repository": "https://github.com/astro-reactive/astro-reactive",
"homepage": "https://astro-reactive.dev",
"author": "astro-reactive",