@fluidframework/map 2.13.0 → 2.20.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 +4 -0
- package/dist/directory.js +2 -2
- package/dist/directory.js.map +1 -1
- package/dist/mapKernel.js +1 -1
- package/dist/mapKernel.js.map +1 -1
- package/dist/package.json +2 -1
- package/dist/packageVersion.d.ts +1 -1
- package/dist/packageVersion.js +1 -1
- package/dist/packageVersion.js.map +1 -1
- package/lib/directory.js +2 -2
- package/lib/directory.js.map +1 -1
- package/lib/mapKernel.js +1 -1
- package/lib/mapKernel.js.map +1 -1
- package/lib/packageVersion.d.ts +1 -1
- package/lib/packageVersion.js +1 -1
- package/lib/packageVersion.js.map +1 -1
- package/package.json +18 -18
- package/src/directory.ts +3 -3
- package/src/mapKernel.ts +1 -1
- package/src/packageVersion.ts +1 -1
package/CHANGELOG.md
CHANGED
package/dist/directory.js
CHANGED
|
@@ -426,7 +426,7 @@ class SharedDirectory extends internal_6.SharedObject {
|
|
|
426
426
|
if (currentSubDirObject.storage) {
|
|
427
427
|
for (const [key, serializable] of Object.entries(currentSubDirObject.storage)) {
|
|
428
428
|
const localValue = this.makeLocal(key, currentSubDir.absolutePath,
|
|
429
|
-
// eslint-disable-next-line
|
|
429
|
+
// eslint-disable-next-line import/no-deprecated
|
|
430
430
|
(0, internal_6.parseHandles)(serializable, this.serializer));
|
|
431
431
|
currentSubDir.populateStorage(key, localValue);
|
|
432
432
|
}
|
|
@@ -1066,7 +1066,7 @@ class SubDirectory extends client_utils_1.TypedEventEmitter {
|
|
|
1066
1066
|
const nextVal = localEntriesIterator.next();
|
|
1067
1067
|
return nextVal.done
|
|
1068
1068
|
? { value: undefined, done: true }
|
|
1069
|
-
: { value: [nextVal.value[0], nextVal.value[1]
|
|
1069
|
+
: { value: [nextVal.value[0], nextVal.value[1].value], done: false };
|
|
1070
1070
|
},
|
|
1071
1071
|
[Symbol.iterator]() {
|
|
1072
1072
|
return this;
|