bt-core-app 2.0.83 → 2.0.85
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 -2
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -9444,7 +9444,7 @@ function dP(e) {
|
|
|
9444
9444
|
}
|
|
9445
9445
|
function g(D) {
|
|
9446
9446
|
const L = ht(r);
|
|
9447
|
-
if (console.log(`testing: ${D}`), L.subscriptionCode == null)
|
|
9447
|
+
if (console.log(`testing: ${D} against ${L.subscriptionCode}`), L.subscriptionCode == null)
|
|
9448
9448
|
return !1;
|
|
9449
9449
|
if (L.subscriptionCode == D)
|
|
9450
9450
|
return !0;
|
|
@@ -25688,6 +25688,7 @@ const DF = ["success", "info", "warning", "error"], AF = Ue({
|
|
|
25688
25688
|
hideToolbarSettings: { type: Boolean, default: !0 },
|
|
25689
25689
|
label: {},
|
|
25690
25690
|
loadingMsg: {},
|
|
25691
|
+
maxWidth: {},
|
|
25691
25692
|
minHeight: { default: void 0 },
|
|
25692
25693
|
noMargins: { type: Boolean, default: void 0 },
|
|
25693
25694
|
opacity: {},
|
|
@@ -25762,7 +25763,7 @@ const DF = ["success", "info", "warning", "error"], AF = Ue({
|
|
|
25762
25763
|
return S.value ? L = "" : (a.bordered && !o.value || m.variant.value == "page") && (L = "ma-2"), a.bordered && !o.value && (L = `${L} border-thin pa-1`), a.bladeName != null && l.value == "grow" && (L = `${L} flex-grow-1`), L;
|
|
25763
25764
|
}), D = A(() => {
|
|
25764
25765
|
var L = a.opacity != null ? `opacity: ${a.opacity};` : "";
|
|
25765
|
-
return a.bladeName != null ? d.value ? `${L} width: ${c.width}px;` : o.value ? `${L} width: 0px;` : l.value == "grow" ? L : l.value == "number" ? `${L} width: ${c.width}px;` : l.value == "auto" ? L : `${L} width: calc(${a.width});` : L;
|
|
25766
|
+
return a.maxWidth != null && (L = `${L} max-width: ${a.maxWidth};`), a.bladeName != null ? d.value ? `${L} width: ${c.width}px;` : o.value ? `${L} width: 0px;` : l.value == "grow" ? L : l.value == "number" ? `${L} width: ${c.width}px;` : l.value == "auto" ? L : `${L} width: calc(${a.width});` : L;
|
|
25766
25767
|
});
|
|
25767
25768
|
return _e(() => a.errorMsg, (L) => {
|
|
25768
25769
|
M.value = L != null;
|
package/package.json
CHANGED