antd-management-fast-framework 2.11.180 → 2.11.183
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/components/DrawerExtra/index.d.ts +1 -1
- package/es/components/LoadingOverlay/index.d.ts +0 -30
- package/es/components/MobileContainor/MobilePreviewArea/index.d.ts +3 -3
- package/es/framework/DataListView/Base/index.d.ts +1 -1
- package/es/framework/DataSingleView/DataCore/index.d.ts +1 -4
- package/es/index.js +1 -1
- package/es/utils/interfaceSettingAssist.d.ts +1 -1
- package/package.json +16 -15
|
@@ -25,7 +25,7 @@ export class DrawerExtra extends React.PureComponent<any, any, any> {
|
|
|
25
25
|
};
|
|
26
26
|
renderPresetTitle: () => string;
|
|
27
27
|
renderOverlayControlButton: () => React.JSX.Element | null;
|
|
28
|
-
renderExtra: () => any;
|
|
28
|
+
renderExtra: () => any[] | React.JSX.Element | null;
|
|
29
29
|
renderOverlayContent: () => React.JSX.Element | null;
|
|
30
30
|
render(): React.JSX.Element;
|
|
31
31
|
}
|
|
@@ -19,12 +19,6 @@ export class LoadingOverlay extends React.PureComponent<any, any, any> {
|
|
|
19
19
|
overflow?: string | undefined;
|
|
20
20
|
maxHeight: string;
|
|
21
21
|
minHeight?: undefined;
|
|
22
|
-
} | {
|
|
23
|
-
height?: string | undefined;
|
|
24
|
-
width?: string | undefined;
|
|
25
|
-
overflow?: string | undefined;
|
|
26
|
-
maxHeight: null;
|
|
27
|
-
minHeight?: undefined;
|
|
28
22
|
} | {
|
|
29
23
|
height?: string | undefined;
|
|
30
24
|
width?: string | undefined;
|
|
@@ -37,30 +31,6 @@ export class LoadingOverlay extends React.PureComponent<any, any, any> {
|
|
|
37
31
|
overflow?: string | undefined;
|
|
38
32
|
maxHeight: string;
|
|
39
33
|
minHeight: string;
|
|
40
|
-
} | {
|
|
41
|
-
height?: string | undefined;
|
|
42
|
-
width?: string | undefined;
|
|
43
|
-
overflow?: string | undefined;
|
|
44
|
-
maxHeight: null;
|
|
45
|
-
minHeight: string;
|
|
46
|
-
} | {
|
|
47
|
-
height?: string | undefined;
|
|
48
|
-
width?: string | undefined;
|
|
49
|
-
overflow?: string | undefined;
|
|
50
|
-
maxHeight?: undefined;
|
|
51
|
-
minHeight: null;
|
|
52
|
-
} | {
|
|
53
|
-
height?: string | undefined;
|
|
54
|
-
width?: string | undefined;
|
|
55
|
-
overflow?: string | undefined;
|
|
56
|
-
maxHeight: string;
|
|
57
|
-
minHeight: null;
|
|
58
|
-
} | {
|
|
59
|
-
height?: string | undefined;
|
|
60
|
-
width?: string | undefined;
|
|
61
|
-
overflow?: string | undefined;
|
|
62
|
-
maxHeight: null;
|
|
63
|
-
minHeight: null;
|
|
64
34
|
};
|
|
65
35
|
render(): React.JSX.Element;
|
|
66
36
|
}
|
|
@@ -227,7 +227,7 @@ export class Base extends AuthorizationWrapper {
|
|
|
227
227
|
renderPresetListViewItem: (record: any, index: any) => React.JSX.Element;
|
|
228
228
|
renderPresetListViewItemInner: (record: any, index: any) => null;
|
|
229
229
|
renderPresetListViewItemExtra: (record: any, index: any) => null;
|
|
230
|
-
renderPresetListViewItemActions: (record: any, index: any) =>
|
|
230
|
+
renderPresetListViewItemActions: (record: any, index: any) => never[] | null;
|
|
231
231
|
renderPresetListViewItemActionOthers: (record: any, index: any) => null;
|
|
232
232
|
renderPresetListViewItemActionSelect: (record: any, index: any) => null;
|
|
233
233
|
establishListViewItemLayout: () => string;
|
|
@@ -27,10 +27,7 @@ export class DataCore extends BaseView {
|
|
|
27
27
|
pageSubTitle: string;
|
|
28
28
|
metaData: null;
|
|
29
29
|
metaExtra: null;
|
|
30
|
-
metaListData: never[];
|
|
31
|
-
* DataSingleView.DataCore
|
|
32
|
-
* @namespace
|
|
33
|
-
*/
|
|
30
|
+
metaListData: never[];
|
|
34
31
|
metaOriginalData: null;
|
|
35
32
|
dataLoading: boolean;
|
|
36
33
|
firstLoadSuccess: boolean;
|