chore: move RELEASE content to CHANGELOG
This commit is contained in:
parent
b07d926e02
commit
06d4ce1126
6 changed files with 159 additions and 155 deletions
|
@ -13,3 +13,32 @@
|
|||
### Patch Changes
|
||||
|
||||
- 414a0bd: Fix dependencies for Astro v2+ support
|
||||
|
||||
## v0.1.6
|
||||
- updates on how packages share files
|
||||
|
||||
## v0.1.5
|
||||
- fix form method type to accept: 'get', 'post', 'dialog'
|
||||
|
||||
## v0.1.4
|
||||
- form validation hook property `triggerValidationOn`
|
||||
- form properties `action` and `method`
|
||||
|
||||
## v0.1.2
|
||||
- make `Checkbox.checked` optional
|
||||
|
||||
## v0.1.1
|
||||
- fix broken `ControlConfig`
|
||||
|
||||
## 0.1.0
|
||||
- deprecate `labelPosition` prop
|
||||
- TextArea and Dropdown types
|
||||
|
||||
## 0.0.3
|
||||
- update package exports and files
|
||||
|
||||
## 0.0.2
|
||||
- expose types on top-level index
|
||||
|
||||
## 0.0.1
|
||||
- initialize @astro-reactive/common package
|
|
@ -1,28 +0,0 @@
|
|||
### v0.1.6
|
||||
- updates on how packages share files
|
||||
|
||||
### v0.1.5
|
||||
- fix form method type to accept: 'get', 'post', 'dialog'
|
||||
|
||||
### v0.1.4
|
||||
- form validation hook property `triggerValidationOn`
|
||||
- form properties `action` and `method`
|
||||
|
||||
### v0.1.2
|
||||
- make `Checkbox.checked` optional
|
||||
|
||||
### v0.1.1
|
||||
- fix broken `ControlConfig`
|
||||
|
||||
## 0.1.0
|
||||
- deprecate `labelPosition` prop
|
||||
- TextArea and Dropdown types
|
||||
|
||||
### 0.0.3
|
||||
- update package exports and files
|
||||
|
||||
### 0.0.2
|
||||
- expose types on top-level index
|
||||
|
||||
### 0.0.1
|
||||
- initialize @astro-reactive/common package
|
|
@ -24,3 +24,87 @@
|
|||
- Updated dependencies [414a0bd]
|
||||
- @astro-reactive/validator@0.3.2
|
||||
- @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
|
||||
- implement `readOnly` flag
|
||||
- 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
|
||||
- filter out control with type 'submit' from the FormGroup.controls
|
||||
- implement the submitControl Form input prop
|
||||
- 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
|
||||
|
|
|
@ -1,83 +0,0 @@
|
|||
## 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
|
||||
- implement `readOnly` flag
|
||||
- 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
|
||||
- filter out control with type 'submit' from the FormGroup.controls
|
||||
- implement the submitControl Form input prop
|
||||
- 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
|
|
@ -17,3 +17,49 @@
|
|||
- 414a0bd: Fix dependencies for Astro v2+ support
|
||||
- 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
|
||||
|
|
|
@ -1,44 +0,0 @@
|
|||
## 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
|
Loading…
Reference in a new issue