antd-management-fast-framework 2.11.190 → 2.12.0
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/ApplicationWrapper/index.d.ts +0 -3
- package/es/components/MobileContainor/MobilePreviewDrawer/index.d.ts +0 -3
- package/es/components/ShortcutNavigation/index.d.ts +0 -3
- package/es/framework/Common/InternalLayout/index.d.ts +7 -0
- package/es/framework/DataDrawer/Base/index.d.ts +0 -5
- package/es/framework/DataDrawer/BaseFormDrawer/index.d.ts +0 -3
- package/es/framework/DataDrawer/BaseVerticalFlexDrawer/index.d.ts +0 -3
- package/es/framework/DataListView/EmptyCardCollection/index.d.ts +0 -3
- package/es/framework/DataOperation/BaseWindow/index.d.ts +1 -6
- package/es/index.js +2 -2
- package/package.json +1 -1
|
@@ -58,8 +58,5 @@ export class MobilePreviewDrawer extends BaseNeedlessLoadDrawer {
|
|
|
58
58
|
renderPresetInnerView: () => null;
|
|
59
59
|
renderPresetInnerViewWrapper: () => null;
|
|
60
60
|
}
|
|
61
|
-
export namespace MobilePreviewDrawer {
|
|
62
|
-
let defaultProps: {};
|
|
63
|
-
}
|
|
64
61
|
import { BaseNeedlessLoadDrawer } from '../../../framework/DataDrawer/BaseNeedlessLoadDrawer';
|
|
65
62
|
import React from 'react';
|
|
@@ -22,6 +22,13 @@ export class InternalLayout extends InternalBuild {
|
|
|
22
22
|
* renderPresetContentArea = () => {}
|
|
23
23
|
*/
|
|
24
24
|
renderPresetContentArea: () => null;
|
|
25
|
+
/**
|
|
26
|
+
* 渲染预设内容区域外的上部,默认为空,可根据需要重载。
|
|
27
|
+
* @function
|
|
28
|
+
* @example
|
|
29
|
+
* renderPresetPageBodyTop = () => null
|
|
30
|
+
*/
|
|
31
|
+
renderPresetPageBodyTop: () => null;
|
|
25
32
|
/**
|
|
26
33
|
* 渲染预设页面 Body 内容区域。
|
|
27
34
|
* @function
|
|
@@ -24,8 +24,5 @@ export class BaseFormDrawer extends Base {
|
|
|
24
24
|
renderPresetForm: () => React.JSX.Element;
|
|
25
25
|
renderPresetContentContainorInner: () => React.JSX.Element;
|
|
26
26
|
}
|
|
27
|
-
export namespace BaseFormDrawer {
|
|
28
|
-
let defaultProps: {};
|
|
29
|
-
}
|
|
30
27
|
import { Base } from '../Base';
|
|
31
28
|
import React from 'react';
|
|
@@ -5,8 +5,5 @@ export class BaseVerticalFlexDrawer extends Base {
|
|
|
5
5
|
renderPresetContentContainorInnerBottom: () => React.JSX.Element | null;
|
|
6
6
|
renderPresetContentContainorInner: () => React.JSX.Element;
|
|
7
7
|
}
|
|
8
|
-
export namespace BaseVerticalFlexDrawer {
|
|
9
|
-
let defaultProps: {};
|
|
10
|
-
}
|
|
11
8
|
import { Base } from '../Base';
|
|
12
9
|
import React from 'react';
|
|
@@ -187,12 +187,7 @@ export class BaseWindow extends Base {
|
|
|
187
187
|
}) => void;
|
|
188
188
|
handleCancel: () => void;
|
|
189
189
|
getFormClassName: () => null;
|
|
190
|
-
getVisibleFlag():
|
|
191
|
-
}
|
|
192
|
-
export namespace BaseWindow {
|
|
193
|
-
namespace defaultProps {
|
|
194
|
-
let flag: string;
|
|
195
|
-
}
|
|
190
|
+
getVisibleFlag(): string;
|
|
196
191
|
}
|
|
197
192
|
import { Base } from '../Base';
|
|
198
193
|
import React from 'react';
|