bt-core-app 2.0.110 → 2.0.111
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/bt-core-app.js +3 -3
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -7814,10 +7814,10 @@ function iP(e) {
|
|
|
7814
7814
|
if (e.getStorageKey != null)
|
|
7815
7815
|
return e.getStorageKey(y);
|
|
7816
7816
|
if (!oa(y.itemID))
|
|
7817
|
-
return `${s(y)}_${
|
|
7817
|
+
return `${s(y)}_${y.itemID}`;
|
|
7818
7818
|
let k = "";
|
|
7819
7819
|
const C = b.params ?? {};
|
|
7820
|
-
return C != null && (k = Object.entries(C).sort(vl.firstBy((M) => M[0])).map((M) => `${M[0]}=${JSON.stringify(M[1])}`).join("&")), `${s(y)}_${k
|
|
7820
|
+
return C != null && (k = Object.entries(C).sort(vl.firstBy((M) => M[0])).map((M) => `${M[0]}=${JSON.stringify(M[1])}`).join("&")), `${s(y)}_${oa(k) ? "no-params" : k}`;
|
|
7821
7821
|
}
|
|
7822
7822
|
function d() {
|
|
7823
7823
|
a.value = {}, n.value = {};
|
|
@@ -7902,7 +7902,7 @@ function iP(e) {
|
|
|
7902
7902
|
}
|
|
7903
7903
|
async function g(b, y, k, C) {
|
|
7904
7904
|
var $;
|
|
7905
|
-
let M = p_(($ = a.value[b]) == null ? void 0 : $.data, y, e.updateIgnoreProps, "all-obj2-props"), D = {
|
|
7905
|
+
let M = p_((($ = a.value[b]) == null ? void 0 : $.data) ?? {}, y, e.updateIgnoreProps, "all-obj2-props"), D = {
|
|
7906
7906
|
meta: { storedOn: t.toString() },
|
|
7907
7907
|
data: M
|
|
7908
7908
|
};
|
package/package.json
CHANGED