antd-management-fast-framework 2.11.178 → 2.11.180
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/README.md +42 -0
- package/es/components/ApplicationWrapper/index.d.ts +6 -0
- package/es/components/Bootstrap/index.d.ts +6 -0
- package/es/components/DataPreviewDrawer/index.d.ts +8 -1
- package/es/components/MenuWrapper/index.d.ts +0 -2
- package/es/components/MobileContainor/MobilePreviewArea/index.d.ts +10 -2
- package/es/components/MobileContainor/MobilePreviewDrawer/index.d.ts +4 -1
- package/es/components/PageExtraWrapper/index.d.ts +0 -2
- package/es/framework/AuthorizationWrapper/index.d.ts +1 -0
- package/es/framework/Common/InternalBuild/index.d.ts +85 -21
- package/es/framework/Common/InternalFlow/index.d.ts +747 -155
- package/es/framework/Common/InternalLayout/index.d.ts +42 -3
- package/es/framework/Common/InternalSwitchoverFlow/index.d.ts +86 -5
- package/es/framework/Common/index.d.ts +6 -0
- package/es/framework/Core/index.d.ts +117 -35
- package/es/framework/CustomWrapper/Supplement/index.d.ts +2 -2
- package/es/framework/CustomWrapper/SupplementCore/index.d.ts +36 -5
- package/es/framework/CustomWrapper/SupplementWrapper/index.d.ts +14 -0
- package/es/framework/DataDrawer/Base/index.d.ts +128 -17
- package/es/framework/DataDrawer/BaseAddDrawer/index.d.ts +1 -1
- package/es/framework/DataDrawer/BaseFormDrawer/index.d.ts +20 -1
- package/es/framework/DataDrawer/BaseLoadDrawer/index.d.ts +1 -9
- package/es/framework/DataDrawer/BaseNeedlessLoadDrawer/index.d.ts +1 -9
- package/es/framework/DataDrawer/BaseSaveDrawer/index.d.ts +4 -9
- package/es/framework/DataDrawer/BaseUpdateDrawer/index.d.ts +4 -1
- package/es/framework/DataForm/BaseAddForm/index.d.ts +50 -9
- package/es/framework/DataForm/BaseUpdateForm/index.d.ts +26 -6
- package/es/framework/DataListView/Base/index.d.ts +24 -18
- package/es/framework/DataMenuContainer/index.d.ts +6 -2
- package/es/framework/DataModal/Base/index.d.ts +48 -12
- package/es/framework/DataModal/BaseAddModal/index.d.ts +1 -9
- package/es/framework/DataModal/BaseDisplayModal/index.d.ts +1 -9
- package/es/framework/DataModal/BaseFormModal/index.d.ts +9 -2
- package/es/framework/DataModal/BaseImageSortModal/index.d.ts +5 -9
- package/es/framework/DataModal/BaseSelectModal/index.d.ts +4 -8
- package/es/framework/DataModal/BaseUpdateTransferModal/index.d.ts +5 -9
- package/es/framework/DataMultiPageView/MultiPage/index.d.ts +5 -0
- package/es/framework/DataMultiPageView/MultiPageDrawer/index.d.ts +43 -6
- package/es/framework/DataMultiPageView/MultiPageModal/index.d.ts +51 -9
- package/es/framework/DataOperation/Base/index.d.ts +1 -0
- package/es/framework/DataOperation/BaseWindow/index.d.ts +135 -36
- package/es/framework/DataSinglePageView/SinglePageDrawer/index.d.ts +43 -6
- package/es/framework/DataSinglePageView/SinglePageModal/index.d.ts +47 -7
- package/es/framework/DataSinglePageView/SinglePageSelectDrawer/index.d.ts +4 -2
- package/es/framework/DataSinglePageView/SinglePageSelectModal/index.d.ts +15 -3
- package/es/framework/DataSingleView/DataCore/index.d.ts +59 -12
- package/es/framework/DataSingleView/DataLoad/index.d.ts +35 -25
- package/es/framework/DataTabContainer/index.d.ts +1 -1
- package/es/framework/Wrapper/index.d.ts +1 -1
- package/es/index.js +2 -2
- package/package.json +40 -40
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* data load
|
|
3
3
|
* @namespace framework.DataSingleView
|
|
4
4
|
* @class DataLoad
|
|
5
|
-
* @
|
|
5
|
+
* @extends DataCore
|
|
6
6
|
*/
|
|
7
7
|
export class DataLoad extends DataCore {
|
|
8
8
|
lastLoadParams: any;
|
|
@@ -23,29 +23,39 @@ export class DataLoad extends DataCore {
|
|
|
23
23
|
externalData: null;
|
|
24
24
|
};
|
|
25
25
|
doOtherWhenChangeVisibleToShow: (preProperties: any, preState: any, snapshot: any) => void;
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
}) => void;
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
26
|
+
/**
|
|
27
|
+
* 加载数据成功后的额外执行逻辑,在 afterLoadSuccess 调用后触发。
|
|
28
|
+
* @function
|
|
29
|
+
* @param {*} option 配置项。
|
|
30
|
+
* @param {Object} option.metaData 单体数据。
|
|
31
|
+
* @param {Array} option.metaListData 列表数据。
|
|
32
|
+
* @param {Object} option.metaExtra 额外数据。
|
|
33
|
+
* @param {Object} option.metaOriginalData 原始数据。
|
|
34
|
+
* @example
|
|
35
|
+
* doOtherAfterLoadSuccess = () => {}
|
|
36
|
+
*/
|
|
37
|
+
doOtherAfterLoadSuccess: ({ metaData, metaListData, metaExtra, metaOriginalData, }: any) => void;
|
|
38
|
+
/**
|
|
39
|
+
* 填充数据。
|
|
40
|
+
* @function
|
|
41
|
+
* @param {*} option 配置项。
|
|
42
|
+
* @param {Object} option.metaData 单体数据。
|
|
43
|
+
* @param {Array} option.metaListData 列表数据。
|
|
44
|
+
* @param {Object} option.metaExtra 额外数据。
|
|
45
|
+
* @param {Object} option.metaOriginalData 原始数据。
|
|
46
|
+
*/
|
|
47
|
+
fillData: ({ metaData, metaListData, metaExtra, metaOriginalData, }: any) => void;
|
|
48
|
+
/**
|
|
49
|
+
* 填充数据后触发逻辑。
|
|
50
|
+
* @function
|
|
51
|
+
* @param {*} option 配置项。
|
|
52
|
+
* @param {Object} option.metaData 单体数据。
|
|
53
|
+
* @param {Array} option.metaListData 列表数据。
|
|
54
|
+
* @param {Object} option.metaExtra 额外数据。
|
|
55
|
+
* @param {Object} option.metaOriginalData 原始数据。
|
|
56
|
+
* @example
|
|
57
|
+
* afterFillForm = () => {}
|
|
58
|
+
*/
|
|
59
|
+
afterFillForm: ({ metaData, metaListData, metaExtra, metaOriginalData, }: any) => void;
|
|
50
60
|
}
|
|
51
61
|
import { DataCore } from '../DataCore';
|