dexie-cloud-addon 4.4.9 → 4.4.10
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/dist/modern/dexie-cloud-addon.js +16 -4
- package/dist/modern/dexie-cloud-addon.js.map +1 -1
- package/dist/modern/dexie-cloud-addon.min.js +1 -1
- package/dist/modern/dexie-cloud-addon.min.js.map +1 -1
- package/dist/modern/service-worker.js +16 -4
- package/dist/modern/service-worker.js.map +1 -1
- package/dist/modern/service-worker.min.js +1 -1
- package/dist/modern/service-worker.min.js.map +1 -1
- package/dist/umd/dexie-cloud-addon.js +17 -5
- package/dist/umd/dexie-cloud-addon.js.map +1 -1
- package/dist/umd/dexie-cloud-addon.min.js +1 -1
- package/dist/umd/dexie-cloud-addon.min.js.map +1 -1
- package/dist/umd/service-worker.js +17 -5
- package/dist/umd/service-worker.js.map +1 -1
- package/dist/umd/service-worker.min.js +1 -1
- package/dist/umd/service-worker.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
*
|
|
9
9
|
* ==========================================================================
|
|
10
10
|
*
|
|
11
|
-
* Version 4.4.
|
|
11
|
+
* Version 4.4.10, Sat Apr 04 2026
|
|
12
12
|
*
|
|
13
13
|
* https://dexie.org
|
|
14
14
|
*
|
|
@@ -14493,7 +14493,7 @@
|
|
|
14493
14493
|
*
|
|
14494
14494
|
* ==========================================================================
|
|
14495
14495
|
*
|
|
14496
|
-
* Version 4.4.0,
|
|
14496
|
+
* Version 4.4.0, Sat Apr 04 2026
|
|
14497
14497
|
*
|
|
14498
14498
|
* https://dexie.org
|
|
14499
14499
|
*
|
|
@@ -17172,8 +17172,20 @@
|
|
|
17172
17172
|
* each onNext callback, ensuring cursor.value is always available.
|
|
17173
17173
|
*/
|
|
17174
17174
|
function createBlobResolvingCursor(cursor, table, blobSavingQueue, db) {
|
|
17175
|
-
// Create wrapped cursor using Object.create() - inherits everything
|
|
17175
|
+
// Create wrapped cursor using Object.create() - inherits everything.
|
|
17176
|
+
// Important: .key and .primaryKey must be explicitly overridden with
|
|
17177
|
+
// closure-based getters to prevent native IDBCursorWithValue getters from
|
|
17178
|
+
// being reached through the prototype chain with a wrong `this`, which
|
|
17179
|
+
// throws "Illegal invocation" in Chrome 146+.
|
|
17176
17180
|
const wrappedCursor = Object.create(cursor, {
|
|
17181
|
+
key: {
|
|
17182
|
+
get() { return cursor.key; },
|
|
17183
|
+
configurable: true,
|
|
17184
|
+
},
|
|
17185
|
+
primaryKey: {
|
|
17186
|
+
get() { return cursor.primaryKey; },
|
|
17187
|
+
configurable: true,
|
|
17188
|
+
},
|
|
17177
17189
|
value: {
|
|
17178
17190
|
value: cursor.value,
|
|
17179
17191
|
enumerable: true,
|
|
@@ -19730,7 +19742,7 @@
|
|
|
19730
19742
|
const downloading$ = createDownloadingState();
|
|
19731
19743
|
dexie.cloud = {
|
|
19732
19744
|
// @ts-ignore
|
|
19733
|
-
version: "4.4.
|
|
19745
|
+
version: "4.4.10",
|
|
19734
19746
|
options: Object.assign({}, DEFAULT_OPTIONS),
|
|
19735
19747
|
schema: null,
|
|
19736
19748
|
get currentUserId() {
|
|
@@ -20175,7 +20187,7 @@
|
|
|
20175
20187
|
}
|
|
20176
20188
|
}
|
|
20177
20189
|
// @ts-ignore
|
|
20178
|
-
dexieCloud.version = "4.4.
|
|
20190
|
+
dexieCloud.version = "4.4.10";
|
|
20179
20191
|
Dexie.Cloud = dexieCloud;
|
|
20180
20192
|
|
|
20181
20193
|
exports.default = dexieCloud;
|