@doeixd/machine 0.0.22 → 0.0.23
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/README.md +2 -0
- package/dist/cjs/development/react.js +1969 -0
- package/dist/cjs/development/react.js.map +7 -0
- package/dist/cjs/production/react.js +1 -0
- package/dist/esm/development/react.js +1955 -0
- package/dist/esm/development/react.js.map +7 -0
- package/dist/esm/production/react.js +1 -0
- package/dist/types/entry-react.d.ts +6 -0
- package/dist/types/entry-react.d.ts.map +1 -0
- package/dist/types/react.d.ts +133 -0
- package/dist/types/react.d.ts.map +1 -0
- package/package.json +13 -1
package/README.md
CHANGED
|
@@ -826,6 +826,8 @@ class Restricted extends MachineExclude(Source, Excluded) {}
|
|
|
826
826
|
// Or use instances: const restricted = machineExclude(sourceInst, excludedInst);
|
|
827
827
|
```
|
|
828
828
|
|
|
829
|
+
**📖 [Complete Mixins Documentation](./docs/mixins.md)**
|
|
830
|
+
|
|
829
831
|
### Middleware System
|
|
830
832
|
|
|
831
833
|
For production-ready state machines with logging, analytics, validation, error handling, and debugging capabilities:
|