bt-core-app 1.4.607 → 1.4.609
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 -7
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -10692,9 +10692,9 @@ function Cd(e) {
|
|
|
10692
10692
|
getUsedHeight: n
|
|
10693
10693
|
}, Yr;
|
|
10694
10694
|
}
|
|
10695
|
-
function YV(e) {
|
|
10695
|
+
function YV(e, t) {
|
|
10696
10696
|
return {
|
|
10697
|
-
style: D(() => Yr == null ? "" : `height: calc(100vh - ${Yr.getUsedHeight(e)}px); overflow-y: auto;`)
|
|
10697
|
+
style: D(() => Yr == null ? "" : `height: calc(100vh - ${t == !0 ? e : Yr.getUsedHeight(e)}px); overflow-y: auto;`)
|
|
10698
10698
|
};
|
|
10699
10699
|
}
|
|
10700
10700
|
const sk = {
|
|
@@ -41574,13 +41574,11 @@ const J5 = { class: "d-flex align-center" }, QV = /* @__PURE__ */ je({
|
|
|
41574
41574
|
n.value = !n.value;
|
|
41575
41575
|
}), (s, d) => (F(), le(yr, {
|
|
41576
41576
|
modelValue: n.value,
|
|
41577
|
-
"onUpdate:modelValue": d[0] || (d[0] = (u) => n.value = u)
|
|
41577
|
+
"onUpdate:modelValue": d[0] || (d[0] = (u) => n.value = u),
|
|
41578
|
+
"max-width": "400"
|
|
41578
41579
|
}, {
|
|
41579
41580
|
default: R(() => [
|
|
41580
|
-
x(ln, {
|
|
41581
|
-
"max-width": "400",
|
|
41582
|
-
title: "Demo Profiles"
|
|
41583
|
-
}, {
|
|
41581
|
+
x(ln, { title: "Demo Profiles" }, {
|
|
41584
41582
|
default: R(() => [
|
|
41585
41583
|
x(Ut, { class: "pa-0" }, {
|
|
41586
41584
|
default: R(() => [
|
package/dist/index.d.ts
CHANGED
|
@@ -2134,7 +2134,7 @@ export declare interface UseStoreOptions {
|
|
|
2134
2134
|
storeName?: string;
|
|
2135
2135
|
}
|
|
2136
2136
|
|
|
2137
|
-
export declare function useStyle(actualUsedHeight?: number): {
|
|
2137
|
+
export declare function useStyle(actualUsedHeight?: number, ignoreCore?: boolean): {
|
|
2138
2138
|
style: ComputedRef<string>;
|
|
2139
2139
|
};
|
|
2140
2140
|
|
package/package.json
CHANGED