mobx-keystone 1.12.1 → 1.12.2
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 +4 -0
- package/dist/mobx-keystone.esm.js +2985 -2935
- package/dist/mobx-keystone.esm.mjs +2985 -2935
- package/dist/mobx-keystone.umd.js +2984 -2934
- package/package.json +96 -96
- package/src/action/modelFlow.ts +240 -238
- package/src/action/wrapInAction.ts +4 -1
- package/src/computedTree/computedTree.ts +7 -3
- package/src/rootStore/attachDetach.ts +1 -1
- package/src/standardActions/actions.ts +64 -61
- package/src/utils/decorators.ts +95 -31
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 1.12.2
|
|
4
|
+
|
|
5
|
+
- Fix: preserve third-party decorator metadata when wrapping model actions, flows, computed getters, lifecycle hooks, and standalone actions/flows (#559).
|
|
6
|
+
|
|
3
7
|
## 1.12.1
|
|
4
8
|
|
|
5
9
|
- Fix: `toSnapshotProcessor` now correctly defers execution until the model instance is fully initialized, allowing access to model properties and computed values (#560).
|