bt-core-app 1.4.376 → 1.4.378
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 +5 -4
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -23772,13 +23772,14 @@ function br() {
|
|
|
23772
23772
|
function Ap() {
|
|
23773
23773
|
const e = xs(), t = br();
|
|
23774
23774
|
function n() {
|
|
23775
|
+
console.log("navving");
|
|
23775
23776
|
const a = t.navHistory.length;
|
|
23776
23777
|
if (a > 1) {
|
|
23777
23778
|
t.navHistory.pop();
|
|
23778
23779
|
const l = t.navHistory[a - 1];
|
|
23779
|
-
t.navHistory.pop(), e.push(l);
|
|
23780
|
+
t.navHistory.pop(), console.log("to"), console.log(l), e.push(l);
|
|
23780
23781
|
} else
|
|
23781
|
-
e.back();
|
|
23782
|
+
console.log("backing up"), e.back();
|
|
23782
23783
|
}
|
|
23783
23784
|
return {
|
|
23784
23785
|
navBack: n
|
|
@@ -23866,9 +23867,9 @@ function qM(e) {
|
|
|
23866
23867
|
}
|
|
23867
23868
|
}
|
|
23868
23869
|
function w(T, L) {
|
|
23869
|
-
L != null && T.name == L.name && (L.params.id == "new" || L.query.id == "new") && n.pop(), T != null && (T.params == null || T.params.navIgnore != "true") && n.push(T);
|
|
23870
|
+
console.log(T), console.log(L), L != null && T.name == L.name && (L.params.id == "new" || L.query.id == "new") && n.pop(), T != null && (T.params == null || T.params.navIgnore != "true") && n.push(T);
|
|
23870
23871
|
const M = T.meta.nav ?? T.name, P = u(M), W = T.meta.background ?? (P == null ? void 0 : P.background);
|
|
23871
|
-
W != o.value && (o.value = W, i.value == null && x()), l.value = T.meta.hideNavigation !== "true" && (P == null ? void 0 : P.hideNavigation) !== !0, a.value = T.meta.hideAppBar !== "true" && (P == null ? void 0 : P.hideAppBar) !== !0;
|
|
23872
|
+
W != o.value && (o.value = W, i.value == null && x()), l.value = T.meta.hideNavigation !== "true" && (P == null ? void 0 : P.hideNavigation) !== !0, a.value = T.meta.hideAppBar !== "true" && (P == null ? void 0 : P.hideAppBar) !== !0, console.log(n);
|
|
23872
23873
|
}
|
|
23873
23874
|
return _c = {
|
|
23874
23875
|
showAppBar: a,
|
package/package.json
CHANGED