antd-management-fast-framework 2.1.33 → 2.1.35
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/LoadingOverlay/index.d.ts +27 -0
- package/es/components/ReloadAnimalPrompt/index.d.ts +1 -0
- package/es/framework/Common/InternalFlow/index.d.ts +8 -0
- package/es/framework/Core/index.d.ts +2 -0
- package/es/framework/DataListView/Base/index.d.ts +1 -0
- package/es/framework/DataMultiPageView/MultiPageDrawer/index.d.ts +1 -1
- package/es/framework/DataOperation/BaseWindow/index.d.ts +1 -0
- package/es/framework/DataSinglePageView/SinglePageDrawer/index.d.ts +1 -1
- package/es/index.js +2 -2
- package/es/modelBuilders/reloadAnimalPromptControl.d.ts +2 -6
- package/es/utils/reloadAnimalPromptControlAssist.d.ts +4 -3
- package/package.json +2 -2
|
@@ -17,17 +17,13 @@ export function buildModel(): {
|
|
|
17
17
|
alias: any;
|
|
18
18
|
}, { put }: {
|
|
19
19
|
put: any;
|
|
20
|
-
}): Generator<any, {
|
|
21
|
-
visible: boolean;
|
|
22
|
-
}, unknown>;
|
|
20
|
+
}): Generator<any, {}, unknown>;
|
|
23
21
|
hide({ payload, alias }: {
|
|
24
22
|
payload: any;
|
|
25
23
|
alias: any;
|
|
26
24
|
}, { put }: {
|
|
27
25
|
put: any;
|
|
28
|
-
}): Generator<any, {
|
|
29
|
-
visible: boolean;
|
|
30
|
-
}, unknown>;
|
|
26
|
+
}): Generator<any, {}, unknown>;
|
|
31
27
|
};
|
|
32
28
|
reducers: {
|
|
33
29
|
reducerRemoteData(state: any, action: any): any;
|
|
@@ -2,16 +2,17 @@ export namespace reloadAnimalPromptControlAssist {
|
|
|
2
2
|
/**
|
|
3
3
|
* check
|
|
4
4
|
* @param {object} reloadAnimalPromptControl model
|
|
5
|
+
* @param {string} flag switch flag
|
|
5
6
|
*/
|
|
6
|
-
function check(reloadAnimalPromptControl: object): boolean;
|
|
7
|
+
function check(reloadAnimalPromptControl: object, flag: string): boolean;
|
|
7
8
|
/**
|
|
8
9
|
* show
|
|
9
10
|
* @param {Array} message switch flag
|
|
10
11
|
*/
|
|
11
|
-
function show(...message: any[]): void;
|
|
12
|
+
function show(flag: any, ...message: any[]): void;
|
|
12
13
|
/**
|
|
13
14
|
* hide
|
|
14
15
|
* @param {Array} message switch flag
|
|
15
16
|
*/
|
|
16
|
-
function hide(delay?: number, ...message: any[]): void;
|
|
17
|
+
function hide(flag: any, delay?: number, ...message: any[]): void;
|
|
17
18
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "antd-management-fast-framework",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.35",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"homepage": "https://github.com/kityandhero/antd-management-fast-framework#readme",
|
|
6
6
|
"license": "ISC",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"@umijs/max": "^4.0.71",
|
|
57
57
|
"antd": "^5.6.1",
|
|
58
58
|
"antd-management-fast-common": "^2.1.27",
|
|
59
|
-
"antd-management-fast-component": "^2.1.
|
|
59
|
+
"antd-management-fast-component": "^2.1.31",
|
|
60
60
|
"axios": "^1.4.0",
|
|
61
61
|
"classnames": "^2.3.2",
|
|
62
62
|
"dayjs": "^1.11.8",
|