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 # @astro-reactive/docs
## 0.0.3
### Patch Changes
- 334a4c5: - Update documentation links to release notes
## 0.0.2 ## 0.0.2
### Patch Changes ### Patch Changes

View file

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

View file

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

View file

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

View file

@ -1,5 +1,13 @@
# @astro-reactive/form # @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 ## 0.8.0
### Minor Changes ### Minor Changes
@ -26,37 +34,46 @@
- @astro-reactive/common@0.1.8 - @astro-reactive/common@0.1.8
## v0.7.0 ## v0.7.0
- project chores: updates on how the packages share common files, initial codecov set up - project chores: updates on how the packages share common files, initial codecov set up
- documentation updates: Readme examples and API docs update - documentation updates: Readme examples and API docs update
- support for Astro v2 - support for Astro v2
## v0.6.7 ## v0.6.7
- fix form method type to accept: 'get', 'post', 'dialog' - fix form method type to accept: 'get', 'post', 'dialog'
## v0.6.6 ## v0.6.6
- implement validation hooks with form's `triggerValidationOn` prop - implement validation hooks with form's `triggerValidationOn` prop
- types and intellisense improvements - types and intellisense improvements
- validation support for RadioGroup - validation support for RadioGroup
- form's `action` and `method` props - form's `action` and `method` props
## v0.6.5 ## v0.6.5
- fix deps - fix deps
## v0.6.4 ## v0.6.4
- Form component's new `validateOnLoad` property - Form component's new `validateOnLoad` property
- FormGroup.setValue() method to set values for the whole form - FormGroup.setValue() method to set values for the whole form
- fix for Radio Group's inputs not having unique IDs - fix for Radio Group's inputs not having unique IDs
## v0.6.3 ## v0.6.3
- make `Checkbox.checked` optional - make `Checkbox.checked` optional
## v0.6.2 ## v0.6.2
- fix broken `ControlConfig` - fix broken `ControlConfig`
## v0.6.1 ## v0.6.1
- fix wrong dependency version - fix wrong dependency version
## v0.6.0 ## v0.6.0
- deprecate `labelPosition` prop - deprecate `labelPosition` prop
- implement TextArea control - implement TextArea control
- add method `setValidators` to FormControl - add method `setValidators` to FormControl
@ -64,32 +81,41 @@
- implement Dropdown control - implement Dropdown control
## v0.5.1 - v0.5.2 ## v0.5.1 - v0.5.2
- use @astro-reactive/common - use @astro-reactive/common
## v0.5.1 ## v0.5.1
- fix for dynamic import of validator causing errors (breaks independence) - 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
@ -98,13 +124,16 @@
- 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.8.0", "version": "0.8.1",
"repository": "https://github.com/astro-reactive/astro-reactive", "repository": "https://github.com/astro-reactive/astro-reactive",
"homepage": "https://astro-reactive.dev", "homepage": "https://astro-reactive.dev",
"author": "astro-reactive", "author": "astro-reactive",

View file

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

View file

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