bt-core-app 2.0.101 → 2.0.103
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 -6
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -7814,7 +7814,7 @@ function iP(e) {
|
|
|
7814
7814
|
return `${w}${v.getStorageKey(y)}`;
|
|
7815
7815
|
if (e.getStorageKey != null)
|
|
7816
7816
|
return `${w}${e.getStorageKey(y)}`;
|
|
7817
|
-
if (w = `${w}${s(y)}`, !va(y.itemID)
|
|
7817
|
+
if (w = `${w}${s(y)}`, !va(y.itemID))
|
|
7818
7818
|
return `${w}${y.itemID}`;
|
|
7819
7819
|
let S = "";
|
|
7820
7820
|
const M = v.params ?? {};
|
|
@@ -7920,9 +7920,7 @@ function iP(e) {
|
|
|
7920
7920
|
meta: { storedOn: t.toString() },
|
|
7921
7921
|
data: { ...(M = a.value[w]) == null ? void 0 : M.data, ...y }
|
|
7922
7922
|
};
|
|
7923
|
-
a.value[w] = C, l == !0 && await r.setItem(w, Wt(C))
|
|
7924
|
-
let D = Object.entries(a.value);
|
|
7925
|
-
console.log("memory items"), console.log(D), D.forEach((V) => {
|
|
7923
|
+
a.value[w] = C, l == !0 && await r.setItem(w, Wt(C)), Object.entries(a.value).forEach((V) => {
|
|
7926
7924
|
const I = V[1].data;
|
|
7927
7925
|
if (I != null)
|
|
7928
7926
|
if (Array.isArray(I))
|
|
@@ -7934,9 +7932,8 @@ function iP(e) {
|
|
|
7934
7932
|
o(I) == o(y) && (a.value[V[0]] = { ...I, ...C });
|
|
7935
7933
|
});
|
|
7936
7934
|
var S = await r.keys();
|
|
7937
|
-
console.log(S);
|
|
7938
7935
|
let A = s(c(v));
|
|
7939
|
-
return console.log(S.filter((V) => V.startsWith(A))), C.data;
|
|
7936
|
+
return console.log(A), console.log(S.filter((V) => V.startsWith(A))), C.data;
|
|
7940
7937
|
}
|
|
7941
7938
|
return y;
|
|
7942
7939
|
}
|
package/package.json
CHANGED