bt-core-app 2.0.162 → 2.0.164
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 +1467 -1465
- package/dist/index.d.ts +1 -11
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2389,17 +2389,7 @@ export declare function useList<T, TSave, TReturn>(props: ListProps<T, TSave, TR
|
|
|
2389
2389
|
add: (variant: BladeVariant) => void;
|
|
2390
2390
|
applyFilters: () => Promise<void>;
|
|
2391
2391
|
asyncItems: Ref<TReturn | TReturn[] | undefined, TReturn | TReturn[] | undefined>;
|
|
2392
|
-
currentExternalParty: Ref<
|
|
2393
|
-
additionalUrl: string;
|
|
2394
|
-
canUnlink: boolean;
|
|
2395
|
-
localIDProp: string;
|
|
2396
|
-
party: string;
|
|
2397
|
-
} | undefined, ExternalParty | {
|
|
2398
|
-
additionalUrl: string;
|
|
2399
|
-
canUnlink: boolean;
|
|
2400
|
-
localIDProp: string;
|
|
2401
|
-
party: string;
|
|
2402
|
-
} | undefined>;
|
|
2392
|
+
currentExternalParty: Ref<ExternalParty | undefined, ExternalParty | undefined>;
|
|
2403
2393
|
currentPage: Ref<number, number>;
|
|
2404
2394
|
deleteItem: (item: TReturn) => Promise<void>;
|
|
2405
2395
|
displayHeaders: ComputedRef< {
|