chore: release form@0.6.5, validator@0.2.5
This commit is contained in:
parent
1a19aea1fd
commit
e6dd753196
5 changed files with 17 additions and 6 deletions
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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": {
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
### v0.2.5
|
||||
- fix deps
|
||||
|
||||
### v0.2.4
|
||||
- Validation categories: Error, Warning, Info
|
||||
|
||||
|
|
|
@ -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": {
|
||||
|
|
Loading…
Reference in a new issue