Skip to content

Commit

Permalink
Updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
martiserra99 committed Jan 16, 2025
1 parent 225ddc9 commit 2115c31
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"cy:open": "cypress open"
},
"dependencies": {
"@formity/react": "^0.2.1",
"@formity/react": "^0.3.0",
"@headlessui/react": "^2.1.10",
"@heroicons/react": "^2.1.5",
"@hookform/resolvers": "^3.9.1",
Expand Down
19 changes: 19 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @formity/react

## 0.3.0

### Minor Changes

- Refractored codebase for improved readability and maintainability.
- Renamed `Flow` type to `State` for improved clarity and alignment with its purpose.
- Renamed properties of the `State` type:
- `cursors` -> `points`
- `entries` -> `inputs`
- Updated function names:
- `getFlow` -> `getState`
- `setFlow` -> `setState`
- Renamed the `initialFlow` prop in the `Formity` component to `initialState` for consistency with the updated naming conventions.

### Patch Changes

- Updated dependencies
- @formity/system@0.3.0

## 0.2.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@formity/react",
"version": "0.2.1",
"version": "0.3.0",
"license": "MIT",
"private": false,
"description": "A highly customizable React library for creating advanced multi-step forms.",
Expand Down Expand Up @@ -30,7 +30,7 @@
"dev": "rollup --config rollup.config.mjs --watch"
},
"dependencies": {
"@formity/system": "^0.2.1"
"@formity/system": "^0.3.0"
},
"devDependencies": {
"@types/react": "^18.3.12"
Expand Down
14 changes: 14 additions & 0 deletions packages/system/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @formity/system

## 0.3.0

### Minor Changes

- Refractored codebase for improved readability and maintainability.
- Renamed `Flow` type to `State` for improved clarity and alignment with its purpose.
- Renamed properties of the `State` type:
- `cursors` -> `points`
- `entries` -> `inputs`
- Updated function names:
- `getFlow` -> `getState`
- `setFlow` -> `setState`
- Renamed the `initialFlow` prop in the `Formity` component to `initialState` for consistency with the updated naming conventions.

## 0.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/system/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@formity/system",
"version": "0.2.1",
"version": "0.3.0",
"license": "MIT",
"private": false,
"description": "Core system that powers the Formity library.",
Expand Down

0 comments on commit 2115c31

Please sign in to comment.