bt-core-app 1.4.47 → 1.4.49
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 +1696 -1695
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1179,7 +1179,7 @@ export declare interface UseItemOptions {
|
|
|
1179
1179
|
* @param emit
|
|
1180
1180
|
* @param options
|
|
1181
1181
|
*/
|
|
1182
|
-
export declare function useList(props: ListProps, emit?: ListEvents): {
|
|
1182
|
+
export declare function useList(props: ListProps, emit?: ListEvents, options?: UseListOptions): {
|
|
1183
1183
|
add: (variant: BladeVariant_2) => void;
|
|
1184
1184
|
asyncItems: Ref<any[]>;
|
|
1185
1185
|
currentPage: Ref<number>;
|
|
@@ -1279,6 +1279,10 @@ export declare function useList(props: ListProps, emit?: ListEvents): {
|
|
|
1279
1279
|
totalPages: Ref<number>;
|
|
1280
1280
|
};
|
|
1281
1281
|
|
|
1282
|
+
declare interface UseListOptions {
|
|
1283
|
+
hideActions?: boolean;
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1282
1286
|
export declare function useLocalCache(): {
|
|
1283
1287
|
clearAsync: (storeName: string) => Promise<void>;
|
|
1284
1288
|
getAsync: <T>(key: string) => Promise<T | null>;
|
package/package.json
CHANGED