diff --git a/CHANGELOG.md b/CHANGELOG.md index 6552be69..b105cfd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 4.61.1 ( Jan 13th, 2024) + +### Fixed + +- Issue where fieldExists was not added to formApi + +## 4.61.0 ( Dec 12th, 2024) + +### Added + +- React 19 as supported version + ## 4.60.5 ( Nov 21st, 2024) ### Fixed diff --git a/README.md b/README.md index 7d7826ac..429f870d 100644 --- a/README.md +++ b/README.md @@ -71,8 +71,8 @@ const ExampleForm = () => ( - Scope: ability to scope ( group ) fields - Schema: ability to render forms based on pure JSON schema - Dynaic: ability to hide and show fields ( render and unrender ) and either cleanup or maintain state of unmounted fields -- Debugging: ability to easily debug users state as well as internals of the library -- Nesting: ability to have highly nested value strucutre `state.values.friends[1].brother.parents.cars[0].model` +- Debugging: ability to easily debug user's state as well as internals of the library +- Nesting: ability to have highly nested value structure `state.values.friends[1].brother.parents.cars[0].model` ## Creating Your Own Fields @@ -194,8 +194,8 @@ Informed took the following into consideration when being built: - **Performance:** `informed` was designed to be able to handle very complex forms at scale - Ability to render a form with thousands of fields on screen - Ability to bulk update thousands of fields at a time -- **Readability** `informed` was designed to be able to write complex forms with very litle **intuitive** code - - Reads naturlly like with pure JSX: +- **Readability** `informed` was designed to be able to write complex forms with very little **intuitive** code + - Reads naturally like with pure JSX: ```jsx