@lobehub/ui 1.132.3 → 1.132.4
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/es/EmptyCard/index.d.ts +5 -3
- package/package.json +1 -1
package/es/EmptyCard/index.d.ts
CHANGED
|
@@ -1,17 +1,19 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { ImageProps } from 'antd';
|
|
3
3
|
import { DivProps, ImgProps } from "../types";
|
|
4
|
-
export interface EmptyCardProps
|
|
4
|
+
export interface EmptyCardProps extends DivProps {
|
|
5
5
|
alt?: string;
|
|
6
6
|
cover?: string;
|
|
7
7
|
defaultVisible?: boolean;
|
|
8
8
|
desc: string;
|
|
9
9
|
height?: number;
|
|
10
|
-
imageProps?:
|
|
10
|
+
imageProps?: ImgProps & ImageProps & {
|
|
11
|
+
priority?: boolean;
|
|
12
|
+
};
|
|
11
13
|
onVisibleChange?: (visible: boolean) => void;
|
|
12
14
|
title: string;
|
|
13
15
|
visible?: boolean;
|
|
14
16
|
width?: number;
|
|
15
17
|
}
|
|
16
|
-
declare const EmptyCard: import("react").NamedExoticComponent<EmptyCardProps
|
|
18
|
+
declare const EmptyCard: import("react").NamedExoticComponent<EmptyCardProps>;
|
|
17
19
|
export default EmptyCard;
|