@prb/effect-xstate 1.0.0-beta.3 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/package.json +2 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Common Changelog](https://common-changelog.org/).
|
|
6
|
+
|
|
7
|
+
[1.0.0]: https://github.com/PaulRBerg/prb-effect/releases/tag/%40prb%2Feffect-xstate%401.0.0
|
|
8
|
+
|
|
9
|
+
## [1.0.0] - 2026-02-03
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- Add Form machine: `createFormMachine` for validation and processing workflows
|
|
14
|
+
- Add Facilitator machine: `createFacilitatorMachine` for check-then-create patterns
|
|
15
|
+
- Add React hooks: `useFacilitatorWorkflow` for machine state management
|
|
16
|
+
- Add Error utilities for extracting and displaying structured error data
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"type": "module",
|
|
9
9
|
"types": "./dist/index.d.ts",
|
|
10
|
-
"version": "1.0.0
|
|
10
|
+
"version": "1.0.0",
|
|
11
11
|
"scripts": {
|
|
12
12
|
"build": "just build",
|
|
13
13
|
"prepack": "bun install --frozen-lockfile && just build"
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
},
|
|
54
54
|
"files": [
|
|
55
55
|
"dist/**",
|
|
56
|
-
"
|
|
56
|
+
"CHANGELOG.md"
|
|
57
57
|
],
|
|
58
58
|
"keywords": [
|
|
59
59
|
"effect",
|