bt-core-app 1.4.595 → 1.4.596
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 +6 -2
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -10667,10 +10667,14 @@ function Cd(e) {
|
|
|
10667
10667
|
if (Bo != null)
|
|
10668
10668
|
return Bo;
|
|
10669
10669
|
const t = (e == null ? void 0 : e.getUsedHeight) ?? (() => 0);
|
|
10670
|
-
function n(
|
|
10671
|
-
return t(e == null ? void 0 : e.display, e == null ? void 0 : e.navigation) + (
|
|
10670
|
+
function n(l) {
|
|
10671
|
+
return t(e == null ? void 0 : e.display, e == null ? void 0 : e.navigation) + (l ?? 0);
|
|
10672
|
+
}
|
|
10673
|
+
function a(l) {
|
|
10674
|
+
return `height: calc(100vh - ${n(l)}px);`;
|
|
10672
10675
|
}
|
|
10673
10676
|
return Bo = {
|
|
10677
|
+
getStyle: a,
|
|
10674
10678
|
getUsedHeight: n
|
|
10675
10679
|
}, Bo;
|
|
10676
10680
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -751,6 +751,7 @@ export declare function guardRoute(to: RouteLocationNormalized, from: RouteLocat
|
|
|
751
751
|
export declare function hasSearch(value: any, str?: string, props?: string[]): boolean;
|
|
752
752
|
|
|
753
753
|
export declare interface HeightOptions {
|
|
754
|
+
getStyle: (actualUsedHeight?: number) => string;
|
|
754
755
|
getUsedHeight: (inAdditionTo?: number) => number;
|
|
755
756
|
}
|
|
756
757
|
|
package/package.json
CHANGED