bt-core-app 2.0.167 → 2.0.169
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 +5438 -5435
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2498,7 +2498,7 @@ export declare function useList<T, TSave, TReturn>(props: ListProps<T, TSave, TR
|
|
|
2498
2498
|
loadingMsg: ComputedRef<string | undefined>;
|
|
2499
2499
|
mode: Ref<BladeMode, BladeMode>;
|
|
2500
2500
|
proxyID: ComputedRef<string | undefined>;
|
|
2501
|
-
pushToExternalParty: (dItem: any) => Promise<
|
|
2501
|
+
pushToExternalParty: (dItem: any) => Promise<void>;
|
|
2502
2502
|
refresh: (rOptions?: ListRefreshOptions) => Promise<void>;
|
|
2503
2503
|
restoreItem: (dItem: any) => Promise<TReturn | undefined>;
|
|
2504
2504
|
saveItem: (dItem: any) => Promise<TReturn | undefined>;
|
|
@@ -2540,7 +2540,7 @@ export declare function useList<T, TSave, TReturn>(props: ListProps<T, TSave, TR
|
|
|
2540
2540
|
titleOptions: ComputedRef<GroupedHeaderOption[]>;
|
|
2541
2541
|
toggleSearch: () => void;
|
|
2542
2542
|
totalPages: Ref<number, number>;
|
|
2543
|
-
unlinkFromExternalParty: (dItem: any) => Promise<
|
|
2543
|
+
unlinkFromExternalParty: (dItem: any) => Promise<void>;
|
|
2544
2544
|
};
|
|
2545
2545
|
|
|
2546
2546
|
declare interface UseListOptions {
|
package/package.json
CHANGED