antd-management-fast-component 2.7.50 → 2.7.52
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.
|
@@ -191,7 +191,10 @@ export function buildFlexRadio({ label, defaultValue, separator, size, button, l
|
|
|
191
191
|
onChange?: null | undefined;
|
|
192
192
|
innerProps?: null | undefined;
|
|
193
193
|
}): React.JSX.Element;
|
|
194
|
-
export function buildTagList({ list }: {
|
|
194
|
+
export function buildTagList({ wrap, size, split, list, }: {
|
|
195
|
+
wrap?: boolean | undefined;
|
|
196
|
+
size?: string | undefined;
|
|
197
|
+
split?: null | undefined;
|
|
195
198
|
list?: never[] | undefined;
|
|
196
199
|
}): React.JSX.Element;
|
|
197
200
|
export function buildStatusBar({ actionList, extra }: {
|
|
@@ -39,9 +39,13 @@ export class ImageBox extends BaseComponent {
|
|
|
39
39
|
}
|
|
40
40
|
export namespace ImageBox {
|
|
41
41
|
namespace defaultProps {
|
|
42
|
+
let showOverlay: boolean;
|
|
43
|
+
let loadingEffect: boolean;
|
|
42
44
|
let fillHeight: boolean;
|
|
45
|
+
let hideWhenLoadError: boolean;
|
|
43
46
|
let preview: boolean;
|
|
44
47
|
let previewSimpleMask: boolean;
|
|
48
|
+
let clickAction: null;
|
|
45
49
|
}
|
|
46
50
|
}
|
|
47
51
|
import { BaseComponent } from '../../bases';
|