mobx-keystone
Advanced tools
Comparing version 1.1.0 to 1.1.1
# Change Log | ||
## 1.1.1 | ||
- Fixed an issue related to computed trees. | ||
## 1.1.0 | ||
@@ -4,0 +8,0 @@ |
declare const ArraySet_base: import("../model/Model")._Model<unknown, { | ||
$modelId: import("../modelShared/prop").ModelIdProp; | ||
$modelId: import("../modelShared/prop").ModelIdProp<string> & { | ||
typedAs<T extends string>(): import("../modelShared/prop").ModelIdProp<T>; | ||
}; | ||
items: import("../modelShared/prop").OptionalModelProp<any[]>; | ||
@@ -4,0 +6,0 @@ }, never, never>; |
declare const ObjectMap_base: import("../model/Model")._Model<unknown, { | ||
$modelId: import("../modelShared/prop").ModelIdProp; | ||
$modelId: import("../modelShared/prop").ModelIdProp<string> & { | ||
typedAs<T extends string>(): import("../modelShared/prop").ModelIdProp<T>; | ||
}; | ||
items: import("../modelShared/prop").OptionalModelProp<{ | ||
@@ -4,0 +6,0 @@ [k: string]: any; |
{ | ||
"name": "mobx-keystone", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "A MobX powered state management solution based on data trees with first class support for TypeScript, snapshots, patches and much more", | ||
@@ -73,12 +73,12 @@ "keywords": [ | ||
"@babel/preset-typescript": "^7.18.6", | ||
"@swc/core": "^1.3.3", | ||
"@swc/core": "^1.3.5", | ||
"@swc/jest": "^0.2.23", | ||
"@types/jest": "^29.1.0", | ||
"@types/node": "^18.7.23", | ||
"babel-jest": "^29.1.0", | ||
"jest": "^29.1.1", | ||
"@types/jest": "^29.1.2", | ||
"@types/node": "^18.8.3", | ||
"babel-jest": "^29.1.2", | ||
"jest": "^29.1.2", | ||
"mobx": "^6.6.2", | ||
"mobx-v4": "npm:mobx@^4.15.7", | ||
"mobx-v5": "npm:mobx@^5.15.7", | ||
"rollup-plugin-typescript2": "^0.34.0", | ||
"rollup-plugin-typescript2": "^0.34.1", | ||
"shx": "^0.3.4", | ||
@@ -90,3 +90,3 @@ "spec.ts": "^1.1.3", | ||
"typescript": "^4.8.4", | ||
"vite": "^3.1.4" | ||
"vite": "^3.1.6" | ||
}, | ||
@@ -93,0 +93,0 @@ "dependencies": { |
@@ -78,4 +78,5 @@ import { computed, IComputedValue } from "mobx" | ||
tweak(oldValue, undefined) | ||
tryUntweak(oldValue) | ||
const oldTweakedValue = entry.tweakedValue | ||
tweak(oldTweakedValue, undefined) | ||
tryUntweak(oldTweakedValue) | ||
@@ -82,0 +83,0 @@ const tweakedValue = tweakComputedTreeNode(newValue, this, propertyKey) |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4136609
54781