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}>
|
<Layout title={title} theme={theme}>
|
||||||
<Form showValidationHints={true} formGroups={form} theme={theme} />
|
<Form
|
||||||
|
validateOnLoad={true}
|
||||||
|
showValidationHints={true}
|
||||||
|
formGroups={form}
|
||||||
|
theme={theme}
|
||||||
|
/>
|
||||||
</Layout>
|
</Layout>
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
### v0.6.5
|
||||||
|
- 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
|
||||||
|
|
|
@ -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.6.4",
|
"version": "0.6.5",
|
||||||
"repository": "https://github.com/ayoayco/astro-reactive-library",
|
"repository": "https://github.com/ayoayco/astro-reactive-library",
|
||||||
"homepage": "https://docs.astro-reactive.dev/en/api/form/form-component/",
|
"homepage": "https://docs.astro-reactive.dev/en/api/form/form-component/",
|
||||||
"author": {
|
"author": {
|
||||||
|
@ -54,8 +54,8 @@
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astro-reactive/common": "*",
|
"@astro-reactive/common": "latest",
|
||||||
"@astro-reactive/validator": "*",
|
"@astro-reactive/validator": "latest",
|
||||||
"short-unique-id": "^4.4.4"
|
"short-unique-id": "^4.4.4"
|
||||||
},
|
},
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
### v0.2.5
|
||||||
|
- fix deps
|
||||||
|
|
||||||
### v0.2.4
|
### v0.2.4
|
||||||
- Validation categories: Error, Warning, Info
|
- Validation categories: Error, Warning, Info
|
||||||
|
|
||||||
|
|
|
@ -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.2.4",
|
"version": "0.2.5",
|
||||||
"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/validator/README.md",
|
"homepage": "https://github.com/ayoayco/astro-reactive-library/blob/main/packages/validator/README.md",
|
||||||
"author": {
|
"author": {
|
||||||
|
@ -51,7 +51,7 @@
|
||||||
"astro": "^1.5.0"
|
"astro": "^1.5.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astro-reactive/common": "*"
|
"@astro-reactive/common": "latest"
|
||||||
},
|
},
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"directories": {
|
"directories": {
|
||||||
|
|
Loading…
Reference in a new issue