z-ui-pc 0.5.5 → 0.5.6
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/index.d.ts +2 -1
- package/dist/index.js +751 -746
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -1978,9 +1978,10 @@ export declare type TCreateBaseFormItemParams<T extends keyof IComponentProps, U
|
|
|
1978
1978
|
|
|
1979
1979
|
/**
|
|
1980
1980
|
* 用于优化异步加载体验
|
|
1981
|
+
* @param initialValue 默认值
|
|
1981
1982
|
* @param isFull 是否为全屏加载
|
|
1982
1983
|
*/
|
|
1983
|
-
export declare function useAsyncLoader(isFull?: boolean): [Ref<boolean>, (fn: () => Promise<void> | void) => void];
|
|
1984
|
+
export declare function useAsyncLoader(initialValue?: boolean, isFull?: boolean): [Ref<boolean>, (fn: () => Promise<void> | void) => Promise<void>];
|
|
1984
1985
|
|
|
1985
1986
|
export declare const useBaseTable: (props: IBaseTableProps) => {
|
|
1986
1987
|
baseTableContainerRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|