mobx-keystone 1.10.2 → 1.11.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 +5 -1
- package/dist/mobx-keystone.esm.js +14 -14
- package/dist/mobx-keystone.esm.mjs +14 -14
- package/dist/mobx-keystone.umd.js +14 -14
- package/dist/types/modelShared/prop.d.ts +3 -3
- package/dist/types/types/TypeCheckError.d.ts +2 -2
- package/dist/types/wrappers/ArraySet.d.ts +4 -4
- package/dist/types/wrappers/ObjectMap.d.ts +4 -4
- package/dist/types/wrappers/asMap.d.ts +2 -2
- package/package.json +10 -10
- package/src/action/modelFlow.ts +1 -1
- package/src/action/wrapInAction.ts +1 -1
- package/src/actionMiddlewares/undoMiddleware.ts +1 -1
- package/src/context/context.ts +284 -284
- package/src/model/BaseModel.ts +2 -2
- package/src/modelShared/prop.ts +6 -3
- package/src/modelShared/sharedInternalModel.ts +1 -0
- package/src/parent/walkTree.ts +2 -1
- package/src/transforms/asMap.ts +9 -9
- package/src/utils/chainFns.ts +2 -2
- package/src/utils/index.ts +1 -1
- package/src/wrappers/ArraySet.ts +4 -4
- package/src/wrappers/ObjectMap.ts +5 -5
- package/src/wrappers/asMap.ts +317 -317
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 1.11.0
|
|
4
|
+
|
|
5
|
+
- Fixed some types so they are compatible with TypeScript 5.6.
|
|
6
|
+
|
|
3
7
|
## 1.10.2
|
|
4
8
|
|
|
5
|
-
- Fixed some types so set transformations are compatible with
|
|
9
|
+
- Fixed some types so set transformations are compatible with TypeScript 5.5 once more.
|
|
6
10
|
|
|
7
11
|
## 1.10.1
|
|
8
12
|
|