chore: release form@0.6.4, validator@0.2.4, common@0.1.3
This commit is contained in:
parent
4c46aa1518
commit
1a19aea1fd
6 changed files with 12 additions and 4 deletions
|
@ -28,7 +28,7 @@
|
||||||
"patch": "npm version patch -w",
|
"patch": "npm version patch -w",
|
||||||
"minor": "npm version minor -w",
|
"minor": "npm version minor -w",
|
||||||
"major": "npm version major -w",
|
"major": "npm version major -w",
|
||||||
"publish": "turbo run lint build test && npm publish --access public -w"
|
"publish": "turbo run lint build check test && npm publish --access public -w"
|
||||||
},
|
},
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"workspaces": [
|
"workspaces": [
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@astro-reactive/common",
|
"name": "@astro-reactive/common",
|
||||||
"version": "0.1.2",
|
"version": "0.1.3",
|
||||||
"description": "Common code for Astro Reactive Packages",
|
"description": "Common code for Astro Reactive Packages",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
### 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
|
### v0.6.3
|
||||||
- make `Checkbox.checked` optional
|
- make `Checkbox.checked` optional
|
||||||
|
|
||||||
|
|
|
@ -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.3",
|
"version": "0.6.4",
|
||||||
"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": {
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
### v0.2.4
|
||||||
|
- Validation categories: Error, Warning, Info
|
||||||
|
|
||||||
### v0.2.3
|
### v0.2.3
|
||||||
- make `Checkbox.checked` optional
|
- make `Checkbox.checked` optional
|
||||||
|
|
||||||
|
|
|
@ -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.3",
|
"version": "0.2.4",
|
||||||
"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": {
|
||||||
|
|
Loading…
Reference in a new issue