chore: release form@0.6.5, validator@0.2.5

This commit is contained in:
Ayo 2022-12-05 21:08:34 +01:00
parent 1a19aea1fd
commit e6dd753196
5 changed files with 17 additions and 6 deletions

View file

@ -97,5 +97,10 @@ const theme = "dark";
---
<Layout title={title} theme={theme}>
<Form showValidationHints={true} formGroups={form} theme={theme} />
<Form
validateOnLoad={true}
showValidationHints={true}
formGroups={form}
theme={theme}
/>
</Layout>

View file

@ -1,3 +1,6 @@
### v0.6.5
- fix deps
### v0.6.4
- Form component's new `validateOnLoad` property
- FormGroup.setValue() method to set values for the whole form

View file

@ -1,7 +1,7 @@
{
"name": "@astro-reactive/form",
"description": "The Reactive Form component for Astro 🔥",
"version": "0.6.4",
"version": "0.6.5",
"repository": "https://github.com/ayoayco/astro-reactive-library",
"homepage": "https://docs.astro-reactive.dev/en/api/form/form-component/",
"author": {
@ -54,8 +54,8 @@
},
"license": "MIT",
"dependencies": {
"@astro-reactive/common": "*",
"@astro-reactive/validator": "*",
"@astro-reactive/common": "latest",
"@astro-reactive/validator": "latest",
"short-unique-id": "^4.4.4"
},
"publishConfig": {

View file

@ -1,3 +1,6 @@
### v0.2.5
- fix deps
### v0.2.4
- Validation categories: Error, Warning, Info

View file

@ -1,7 +1,7 @@
{
"name": "@astro-reactive/validator",
"description": "Form validation library for Astro 🔥",
"version": "0.2.4",
"version": "0.2.5",
"repository": "https://github.com/ayoayco/astro-reactive-library",
"homepage": "https://github.com/ayoayco/astro-reactive-library/blob/main/packages/validator/README.md",
"author": {
@ -51,7 +51,7 @@
"astro": "^1.5.0"
},
"dependencies": {
"@astro-reactive/common": "*"
"@astro-reactive/common": "latest"
},
"main": "index.js",
"directories": {