bt-core-app 2.0.154 → 2.0.156
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 +13083 -12831
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1643,7 +1643,7 @@ export declare interface StoreGetReturn<T> {
|
|
|
1643
1643
|
data: T;
|
|
1644
1644
|
}
|
|
1645
1645
|
|
|
1646
|
-
export declare type StoreMode = 'whole-last-updated' | 'partial-last-updated' | 'session';
|
|
1646
|
+
export declare type StoreMode = 'whole-last-updated' | 'partial-last-updated' | 'session' | 'whole-store';
|
|
1647
1647
|
|
|
1648
1648
|
export declare interface StorePathOptions extends PathOptions {
|
|
1649
1649
|
/**will store this request in session as a special memory in the pinia store */
|
|
@@ -2567,6 +2567,7 @@ export declare function useNavBack(): {
|
|
|
2567
2567
|
export declare function useNavigation(): BTNavigation;
|
|
2568
2568
|
|
|
2569
2569
|
export declare interface UseNavigationOptions {
|
|
2570
|
+
defaultBackgroundName?: string;
|
|
2570
2571
|
defaultCacheExpiryHours?: number;
|
|
2571
2572
|
/**for overriding getting the display name */
|
|
2572
2573
|
getDisplayName?: (navItem: NavigationItem) => string | undefined;
|
package/package.json
CHANGED