diff --git a/.changeset/wild-bulldogs-dance.md b/.changeset/wild-bulldogs-dance.md deleted file mode 100644 index bdb0462..0000000 --- a/.changeset/wild-bulldogs-dance.md +++ /dev/null @@ -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 diff --git a/apps/docs/CHANGELOG.md b/apps/docs/CHANGELOG.md index f654a55..59c4566 100644 --- a/apps/docs/CHANGELOG.md +++ b/apps/docs/CHANGELOG.md @@ -1,5 +1,11 @@ # @astro-reactive/docs +## 0.0.3 + +### Patch Changes + +- 334a4c5: - Update documentation links to release notes + ## 0.0.2 ### Patch Changes diff --git a/apps/docs/package.json b/apps/docs/package.json index 3cfca44..0cdb8b4 100644 --- a/apps/docs/package.json +++ b/apps/docs/package.json @@ -1,7 +1,7 @@ { "name": "@astro-reactive/docs", "type": "module", - "version": "0.0.2", + "version": "0.0.3", "private": true, "scripts": { "dev": "astro dev", diff --git a/packages/create-astro-reactive/CHANGELOG.md b/packages/create-astro-reactive/CHANGELOG.md index ab2a4f6..28e1fe6 100644 --- a/packages/create-astro-reactive/CHANGELOG.md +++ b/packages/create-astro-reactive/CHANGELOG.md @@ -1,5 +1,11 @@ # create-astro-reactive +## 0.0.3 + +### Patch Changes + +- 334a4c5: - Update documentation links to release notes + ## 0.0.2 ### Patch Changes diff --git a/packages/create-astro-reactive/package.json b/packages/create-astro-reactive/package.json index fa97945..f5e0620 100644 --- a/packages/create-astro-reactive/package.json +++ b/packages/create-astro-reactive/package.json @@ -1,6 +1,6 @@ { "name": "create-astro-reactive", - "version": "0.0.2", + "version": "0.0.3", "description": "Create a new astro-reactive app", "main": "index.js", "devDependencies": {}, diff --git a/packages/form/CHANGELOG.md b/packages/form/CHANGELOG.md index 643130f..144d9f3 100644 --- a/packages/form/CHANGELOG.md +++ b/packages/form/CHANGELOG.md @@ -1,5 +1,13 @@ # @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 ### Minor Changes @@ -26,37 +34,46 @@ - @astro-reactive/common@0.1.8 ## v0.7.0 + - project chores: updates on how the packages share common files, initial codecov set up - documentation updates: Readme examples and API docs update - support for Astro v2 ## v0.6.7 + - fix form method type to accept: 'get', 'post', 'dialog' ## v0.6.6 + - implement validation hooks with form's `triggerValidationOn` prop - types and intellisense improvements - validation support for RadioGroup - form's `action` and `method` props ## v0.6.5 + - fix deps ## 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 + - make `Checkbox.checked` optional ## v0.6.2 + - fix broken `ControlConfig` ## v0.6.1 + - fix wrong dependency version ## v0.6.0 + - deprecate `labelPosition` prop - implement TextArea control - add method `setValidators` to FormControl @@ -64,32 +81,41 @@ - implement Dropdown control ## v0.5.1 - v0.5.2 + - use @astro-reactive/common ## v0.5.1 + - fix for dynamic import of validator causing errors (breaks independence) ## v0.5.0 + - server-rendered validation errors (when control was set with invalid value) - radio control accepts array of value or RadioOption - added tests for form components ## v0.4.5 + - update project documentations ## v0.4.4 + - `validators` property in ControlConfig to set validators for a control ## v0.4.1 + - set `showValidationHints` to true to show validation hints ## v0.3.0 + - new control configuration type `ControlConfig` ## v0.2.7 + - updated project logo ## v0.2.6 + - support single `FormGroup` as input to the `Form` component - implement `Form` component input prop `theme` - add initial implementation of `FormControl` `isPristine` and `isValid` states @@ -98,13 +124,16 @@ - implement the FormControl placeholder attribute ## v0.2.4 to v0.2.5 + - update package README - update dependencies ## v0.2.2 + - initial light and dark mode scaffold - update package README ## v0.2.1 + - FormGroup.get(name) - returns the FormControl with matching name - FormControl.setValue(value) - sets the FormControl value diff --git a/packages/form/package.json b/packages/form/package.json index 5b77323..b4768eb 100644 --- a/packages/form/package.json +++ b/packages/form/package.json @@ -1,7 +1,7 @@ { "name": "@astro-reactive/form", "description": "The Reactive Form component for Astro 🔥", - "version": "0.8.0", + "version": "0.8.1", "repository": "https://github.com/astro-reactive/astro-reactive", "homepage": "https://astro-reactive.dev", "author": "astro-reactive", diff --git a/packages/validator/CHANGELOG.md b/packages/validator/CHANGELOG.md index fc00e13..77da2cf 100644 --- a/packages/validator/CHANGELOG.md +++ b/packages/validator/CHANGELOG.md @@ -1,5 +1,11 @@ # @astro-reactive/validator +## 0.3.4 + +### Patch Changes + +- 334a4c5: - Update documentation links to release notes + ## 0.3.3 ### Patch Changes @@ -18,48 +24,62 @@ - Updated dependencies [414a0bd] - @astro-reactive/common@0.1.8 - ## v0.3.0 + - project chores: updates on how the packages share common files, initial codecov set up - documentation updates: Readme examples and API docs update - support for Astro v2 ## v0.2.7 + - support form method type to accept: 'get', 'post', 'dialog' ## v0.2.6 + - implement validation hooks with form's `triggerValidationOn` prop - types and intellisense improvements ## v0.2.5 + - fix deps ## v0.2.4 + - Validation categories: Error, Warning, Info ## v0.2.3 + - make `Checkbox.checked` optional ## v0.2.2 + - fix broken `ControlConfig` ## v0.2.1 + - fix wrong dependency version + ## v0.2.0 + - deprecate `labelPosition` prop ## v0.1.1 + - use @astro-reactive/common ## v0.1.0 + - support server-rendered validation for forms ## v0.0.4 + - update project documentation ## v0.0.3 + - update examples on the README ## v0.0.1 + - Validators - validator functions diff --git a/packages/validator/package.json b/packages/validator/package.json index 0b7a80c..f5a0f2c 100644 --- a/packages/validator/package.json +++ b/packages/validator/package.json @@ -1,7 +1,7 @@ { "name": "@astro-reactive/validator", "description": "Form validation library for Astro 🔥", - "version": "0.3.3", + "version": "0.3.4", "repository": "https://github.com/astro-reactive/astro-reactive", "homepage": "https://astro-reactive.dev", "author": "astro-reactive",