mobx-state-tree 7.3.0 → 7.3.1
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.
|
@@ -5314,7 +5314,7 @@ var MapIdentifierMode;
|
|
|
5314
5314
|
var MSTMap = /** @class */ (function (_super) {
|
|
5315
5315
|
__extends(MSTMap, _super);
|
|
5316
5316
|
function MSTMap(initialData, name) {
|
|
5317
|
-
return _super.call(this, initialData,
|
|
5317
|
+
return _super.call(this, initialData, function (v) { return v; }, name) || this;
|
|
5318
5318
|
}
|
|
5319
5319
|
Object.defineProperty(MSTMap.prototype, "get", {
|
|
5320
5320
|
enumerable: false,
|
|
@@ -5296,7 +5296,7 @@
|
|
|
5296
5296
|
var MSTMap = /** @class */ (function (_super) {
|
|
5297
5297
|
__extends(MSTMap, _super);
|
|
5298
5298
|
function MSTMap(initialData, name) {
|
|
5299
|
-
return _super.call(this, initialData,
|
|
5299
|
+
return _super.call(this, initialData, function (v) { return v; }, name) || this;
|
|
5300
5300
|
}
|
|
5301
5301
|
Object.defineProperty(MSTMap.prototype, "get", {
|
|
5302
5302
|
enumerable: false,
|