bt-core-app 1.4.607 → 1.4.608
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 +2 -2
- 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 = {
|
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