mobx-keystone 0.69.2 → 0.69.3
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.mjs +1 -1
- package/dist/mobx-keystone.umd.js +1 -1
- package/dist/types/dataModel/BaseDataModel.d.ts +3 -3
- package/dist/types/dataModel/DataModel.d.ts +3 -3
- package/dist/types/model/BaseModel.d.ts +2 -2
- package/dist/types/model/Model.d.ts +2 -2
- package/dist/types/modelShared/BaseModelShared.d.ts +9 -9
- package/dist/types/modelShared/prop.d.ts +2 -2
- package/dist/types/types/objectBased/typesDataModelData.d.ts +2 -2
- package/package.json +3 -3
- package/src/dataModel/BaseDataModel.ts +7 -5
- package/src/dataModel/DataModel.ts +5 -5
- package/src/dataModel/newDataModel.ts +2 -2
- package/src/model/BaseModel.ts +2 -2
- package/src/model/Model.ts +2 -2
- package/src/model/newModel.ts +2 -2
- package/src/modelShared/BaseModelShared.ts +10 -11
- package/src/modelShared/prop.ts +2 -2
- package/src/types/objectBased/typesDataModelData.ts +11 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 0.69.3
|
|
4
|
+
|
|
5
|
+
- `ModelData` and `ModelCreationData` now take into account any possible transformations. If you want to use the old ones (without transformations) then use `ModelUntransformedData` and `ModelUntransformedCreationData`.
|
|
6
|
+
|
|
3
7
|
## 0.69.2
|
|
4
8
|
|
|
5
9
|
- Fixed an issue related to modelActions and modelFlows in derived classes giving an error on instantiation.
|