bt-core-app 2.0.188 → 2.0.190
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 +8032 -7995
- package/dist/index.d.ts +6 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2552,6 +2552,7 @@ export declare function useList<T, TSave, TReturn>(props: ListProps<T, TSave, TR
|
|
|
2552
2552
|
}[]>;
|
|
2553
2553
|
titleOptions: ComputedRef<GroupedHeaderOption[]>;
|
|
2554
2554
|
toggleSearch: () => void;
|
|
2555
|
+
totalCount: Ref<number | undefined, number | undefined>;
|
|
2555
2556
|
totalPages: Ref<number, number>;
|
|
2556
2557
|
unlinkFromExternalParty: (dItem: any) => Promise<void>;
|
|
2557
2558
|
};
|
|
@@ -2772,6 +2773,11 @@ export declare interface UseTrackerOptions {
|
|
|
2772
2773
|
|
|
2773
2774
|
export declare function useUrls(): CreateUrlOptions;
|
|
2774
2775
|
|
|
2776
|
+
export declare function useUrlUpdater(): {
|
|
2777
|
+
updateID: (id?: string, replace?: boolean) => void;
|
|
2778
|
+
updateSearchString: (str?: string, replace?: boolean) => void;
|
|
2779
|
+
};
|
|
2780
|
+
|
|
2775
2781
|
declare interface UseWholeLastUpdateStoreOptions {
|
|
2776
2782
|
/**ideally required. Otherwise will struggle to find url path */
|
|
2777
2783
|
api?: BTApi;
|