bt-core-app 1.4.822 → 1.4.823
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 +4 -1
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -23077,7 +23077,10 @@ const n7 = ch("v-alert-title"), l7 = ["success", "info", "warning", "error"], r7
|
|
|
23077
23077
|
const C = T(() => a.loadingMsg != null), k = T(() => !!(n.hideBladeControls ?? a.hideBladeControls) || !a.bladeName), w = T(() => !!(n.hideNavigation ?? a.hideNavigation) || v.variant.value != "page"), x = T(() => {
|
|
23078
23078
|
const V = n.noMargins ?? a.noMargins;
|
|
23079
23079
|
return V ?? u.value;
|
|
23080
|
-
}), S = T(() =>
|
|
23080
|
+
}), S = T(() => {
|
|
23081
|
+
if (a.toolbarVariant != "inverted")
|
|
23082
|
+
return a.bordered || a.variant == "inline" ? "transparent" : "primary";
|
|
23083
|
+
}), _ = U(!1), A = T(() => {
|
|
23081
23084
|
var V = "";
|
|
23082
23085
|
return x.value ? V = "" : (a.bordered && !o.value || v.variant.value == "page") && (V = "ma-2"), a.bordered && !o.value && (V = `${V} border-thin pa-1`), a.bladeName != null && l.value == "grow" && (V = `${V} flex-grow-1`), V;
|
|
23083
23086
|
}), I = T(() => a.bladeName != null ? d.value ? `width: ${c.width}px;` : o.value ? "width: 0px;" : l.value == "grow" ? "" : l.value == "number" ? `width: ${c.width}px;` : l.value == "auto" ? "" : `width: calc(${a.width});` : "");
|
package/package.json
CHANGED