antd-management-fast-framework 2.1.12 → 2.1.14
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 +2 -1
- package/es/components/DataPreviewDrawer/index.d.ts +2 -2
- package/es/components/DrawerExtra/index.d.ts +27 -3
- package/es/components/ElasticityExtraButton/index.d.ts +3 -3
- package/es/components/LoadingOverlay/index.d.ts +7 -1
- package/es/components/MobileContainor/MobileHtmlPreviewBox/index.d.ts +3 -2
- package/es/components/MobileContainor/MobilePreviewArea/index.d.ts +6 -3
- package/es/components/MobileContainor/MobilePreviewDrawer/index.d.ts +6 -2
- package/es/components/ModalExtra/index.d.ts +6 -0
- package/es/components/PageExtraWrapper/index.d.ts +6 -0
- package/es/components/ReloadAnimalPrompt/index.d.ts +14 -0
- package/es/components/TopProgressBar/index.d.ts +2 -1
- package/es/components/index.d.ts +3 -0
- package/es/framework/ButtonExtension/SelectButton/Base/index.d.ts +2 -2
- package/es/framework/Common/InternalBuild/index.d.ts +6 -5
- package/es/framework/Common/InternalFlow/index.d.ts +48 -29
- package/es/framework/Common/InternalLayout/index.d.ts +6 -5
- package/es/framework/Common/InternalTabFlow/index.d.ts +13 -3
- package/es/framework/Common/ReloadActionButton/index.d.ts +1 -1
- package/es/framework/Core/index.d.ts +5 -0
- package/es/framework/DataDrawer/Base/index.d.ts +14 -10
- package/es/framework/DataDrawer/BaseAddDrawer/index.d.ts +2 -1
- package/es/framework/DataDrawer/BaseLoadDrawer/index.d.ts +0 -1
- package/es/framework/DataDrawer/BaseNeedlessLoadDrawer/index.d.ts +0 -1
- package/es/framework/DataForm/BaseAddForm/index.d.ts +2 -1
- package/es/framework/DataListView/Base/index.d.ts +33 -25
- package/es/framework/DataListView/BatchAction/index.d.ts +3 -2
- package/es/framework/DataListView/ColumnSetting/DndItem.d.ts +2 -1
- package/es/framework/DataListView/ColumnSetting/index.d.ts +2 -1
- package/es/framework/DataListView/DensityAction/index.d.ts +1 -1
- package/es/framework/DataListView/EmptyCardCollection/index.d.ts +1 -1
- package/es/framework/DataListView/RefreshButton/index.d.ts +1 -1
- package/es/framework/DataListView/ResetButton/index.d.ts +1 -1
- package/es/framework/DataListView/SearchButton/index.d.ts +1 -1
- package/es/framework/DataMenuContainer/index.d.ts +4 -3
- package/es/framework/DataModal/Base/index.d.ts +11 -10
- package/es/framework/DataModal/BaseLoadModal/index.d.ts +0 -1
- package/es/framework/DataModal/BaseNeedlessLoadModal/index.d.ts +1 -2
- package/es/framework/DataModal/BaseSelectModal/index.d.ts +1 -2
- package/es/framework/DataModal/BaseUpdateTransferModal/index.d.ts +4 -4
- package/es/framework/DataMultiPageView/MultiPage/index.d.ts +0 -1
- package/es/framework/DataMultiPageView/MultiPageDrawer/index.d.ts +38 -34
- package/es/framework/DataMultiPageView/MultiPageSelectDrawer/index.d.ts +36 -7
- package/es/framework/DataOperation/BaseWindow/index.d.ts +11 -28
- package/es/framework/DataSinglePageView/SinglePage/index.d.ts +1 -1
- package/es/framework/DataSinglePageView/SinglePageDrawer/index.d.ts +32 -31
- package/es/framework/DataSinglePageView/SinglePageSelectDrawer/index.d.ts +26 -7
- package/es/framework/DataSingleView/DataCore/index.d.ts +7 -7
- package/es/framework/DataTabContainer/index.d.ts +1 -3
- package/es/framework/FieldExtension/SelectFieldDrawer/SelectFieldBase/index.d.ts +3 -2
- package/es/index.css +6 -5
- package/es/index.js +2 -2
- package/es/modelBuilders/reloadAnimalPromptControl.d.ts +37 -0
- package/es/modelBuilders/switchControl.d.ts +0 -1
- package/es/modelBuilders/tabControl.d.ts +38 -0
- package/es/utils/entranceAssist.d.ts +16 -0
- package/es/utils/index.d.ts +1 -0
- package/es/utils/interfaceSettingAssist.d.ts +7 -5
- package/es/utils/reloadAnimalPromptControlAssist.d.ts +17 -0
- package/es/utils/tabControlAssist.d.ts +17 -0
- package/package.json +45 -44
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export function buildModel(): {
|
|
2
|
+
namespace: string;
|
|
3
|
+
state: {
|
|
4
|
+
visible: boolean;
|
|
5
|
+
data: {
|
|
6
|
+
code: number;
|
|
7
|
+
message: string;
|
|
8
|
+
dataSuccess: boolean;
|
|
9
|
+
data: {};
|
|
10
|
+
list: never[];
|
|
11
|
+
extra: {};
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
effects: {
|
|
15
|
+
show({ payload, alias }: {
|
|
16
|
+
payload: any;
|
|
17
|
+
alias: any;
|
|
18
|
+
}, { put }: {
|
|
19
|
+
put: any;
|
|
20
|
+
}): Generator<any, {
|
|
21
|
+
visible: boolean;
|
|
22
|
+
}, unknown>;
|
|
23
|
+
hide({ payload, alias }: {
|
|
24
|
+
payload: any;
|
|
25
|
+
alias: any;
|
|
26
|
+
}, { put }: {
|
|
27
|
+
put: any;
|
|
28
|
+
}): Generator<any, {
|
|
29
|
+
visible: boolean;
|
|
30
|
+
}, unknown>;
|
|
31
|
+
};
|
|
32
|
+
reducers: {
|
|
33
|
+
reducerRemoteData(state: any, action: any): any;
|
|
34
|
+
reducerNormalData(state: any, action: any): any;
|
|
35
|
+
reducerRemoveKey(state: any, action: any): any;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
export function buildModel(): {
|
|
2
|
+
namespace: string;
|
|
3
|
+
state: {
|
|
4
|
+
data: {
|
|
5
|
+
code: number;
|
|
6
|
+
message: string;
|
|
7
|
+
dataSuccess: boolean;
|
|
8
|
+
data: {};
|
|
9
|
+
list: never[];
|
|
10
|
+
extra: {};
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
effects: {
|
|
14
|
+
setActiveKey({ payload, alias }: {
|
|
15
|
+
payload: any;
|
|
16
|
+
alias: any;
|
|
17
|
+
}, { put }: {
|
|
18
|
+
put: any;
|
|
19
|
+
}): Generator<any, {}, unknown>;
|
|
20
|
+
remove({ payload, alias }: {
|
|
21
|
+
payload: any;
|
|
22
|
+
alias: any;
|
|
23
|
+
}, { put }: {
|
|
24
|
+
put: any;
|
|
25
|
+
}): Generator<any, void, unknown>;
|
|
26
|
+
removeMulti({ payload, alias }: {
|
|
27
|
+
payload: any;
|
|
28
|
+
alias: any;
|
|
29
|
+
}, { put }: {
|
|
30
|
+
put: any;
|
|
31
|
+
}): Generator<any, void, unknown>;
|
|
32
|
+
};
|
|
33
|
+
reducers: {
|
|
34
|
+
reducerRemoteData(state: any, action: any): any;
|
|
35
|
+
reducerNormalData(state: any, action: any): any;
|
|
36
|
+
reducerRemoveKey(state: any, action: any): any;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Set signIn data pretreatment handler
|
|
3
|
+
* @param {Function} handler handle signIn data pretreatment
|
|
4
|
+
*/
|
|
5
|
+
export function setSignInDataPretreatmentHandler(handler: Function): void;
|
|
6
|
+
export function pretreatSignInData({ request, response }: {
|
|
7
|
+
request: any;
|
|
8
|
+
response: any;
|
|
9
|
+
}): any;
|
|
1
10
|
export function signInAction({ target, handleData, successCallback, failCallback, }: {
|
|
2
11
|
target: any;
|
|
3
12
|
handleData: any;
|
|
@@ -9,3 +18,10 @@ export function signOutAction({ target, successCallback, failCallback, }: {
|
|
|
9
18
|
successCallback?: null | undefined;
|
|
10
19
|
failCallback?: null | undefined;
|
|
11
20
|
}): void;
|
|
21
|
+
export namespace entranceAssistConfigure {
|
|
22
|
+
function handleSignInDataPretreatment({ request, response }: {
|
|
23
|
+
request: any;
|
|
24
|
+
response: any;
|
|
25
|
+
}): any;
|
|
26
|
+
const signInDataPretreatmentSetComplete: boolean;
|
|
27
|
+
}
|
package/es/utils/index.d.ts
CHANGED
|
@@ -8,5 +8,6 @@ export * from "./interfaceSettingAssist";
|
|
|
8
8
|
export * from "./interfaceSettingCacheAssist";
|
|
9
9
|
export * from "./metaDataAssist";
|
|
10
10
|
export * from "./progressBarControlAssist";
|
|
11
|
+
export * from "./reloadAnimalPromptControlAssist";
|
|
11
12
|
export * from "./schedulingControlAssist";
|
|
12
13
|
export * from "./switchControlAssist";
|
|
@@ -37,7 +37,8 @@ export function mergeLayoutSetting({ logo, title, water, footerLinks, initialSta
|
|
|
37
37
|
config: Object;
|
|
38
38
|
}): {
|
|
39
39
|
onCollapse: (collapsed: any) => void;
|
|
40
|
-
|
|
40
|
+
onPageChange: (o: any) => void;
|
|
41
|
+
childrenRender: (children: any, properties: any) => React.JSX.Element;
|
|
41
42
|
breakpoint: boolean;
|
|
42
43
|
defaultCollapsed: any;
|
|
43
44
|
constructor: Function;
|
|
@@ -65,22 +66,23 @@ export function mergeLayoutSetting({ logo, title, water, footerLinks, initialSta
|
|
|
65
66
|
bgLayoutImgList: any[];
|
|
66
67
|
avatarProps: {
|
|
67
68
|
size: string;
|
|
68
|
-
render: (properties: any, dom: any) => JSX.Element;
|
|
69
|
+
render: (properties: any, dom: any) => React.JSX.Element;
|
|
69
70
|
src: "data:image/png;base64,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";
|
|
70
71
|
title: string;
|
|
71
72
|
};
|
|
72
73
|
contentStyle: {
|
|
73
74
|
padding: string;
|
|
74
75
|
};
|
|
75
|
-
headerTitleRender: (logo: any, title: any, _: any) => JSX.Element;
|
|
76
|
+
headerTitleRender: (logo: any, title: any, _: any) => React.JSX.Element;
|
|
76
77
|
itemRender: (route: any) => any;
|
|
77
78
|
postMenuData: (d: any) => any;
|
|
78
79
|
menuExtraRender: ({ collapsed }: {
|
|
79
80
|
collapsed: any;
|
|
80
81
|
}) => any;
|
|
81
82
|
menuFooterRender: (properties: any) => Object | null | undefined;
|
|
82
|
-
footerRender: () => JSX.Element;
|
|
83
|
+
footerRender: () => React.JSX.Element;
|
|
83
84
|
logout: null;
|
|
84
85
|
rightContentRender: boolean;
|
|
85
|
-
actionsRender: (properties: any) => (JSX.Element | null)[];
|
|
86
|
+
actionsRender: (properties: any) => (React.JSX.Element | null)[];
|
|
86
87
|
};
|
|
88
|
+
import React from 'react';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export namespace reloadAnimalPromptControlAssist {
|
|
2
|
+
/**
|
|
3
|
+
* check
|
|
4
|
+
* @param {object} reloadAnimalPromptControl model
|
|
5
|
+
*/
|
|
6
|
+
function check(reloadAnimalPromptControl: object): boolean;
|
|
7
|
+
/**
|
|
8
|
+
* show
|
|
9
|
+
* @param {Array} message switch flag
|
|
10
|
+
*/
|
|
11
|
+
function show(...message: any[]): void;
|
|
12
|
+
/**
|
|
13
|
+
* hide
|
|
14
|
+
* @param {Array} message switch flag
|
|
15
|
+
*/
|
|
16
|
+
function hide(delay?: number, ...message: any[]): void;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export namespace tabControlAssist {
|
|
2
|
+
/**
|
|
3
|
+
* set tab active key
|
|
4
|
+
* @param {string} flag tab flag
|
|
5
|
+
*/
|
|
6
|
+
function setActiveKey(flag: string, name: any, ...message: any[]): void;
|
|
7
|
+
/**
|
|
8
|
+
* remove tab
|
|
9
|
+
* @param {string} flag tab flag
|
|
10
|
+
*/
|
|
11
|
+
function remove(flag: string, ...message: any[]): void;
|
|
12
|
+
/**
|
|
13
|
+
* remove multi tab
|
|
14
|
+
* @param {Array} flags tab flag
|
|
15
|
+
*/
|
|
16
|
+
function removeMulti(flags: any[], ...message: any[]): void;
|
|
17
|
+
}
|
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.14",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"homepage": "https://github.com/kityandhero/antd-management-fast-framework#readme",
|
|
6
6
|
"license": "ISC",
|
|
@@ -49,70 +49,71 @@
|
|
|
49
49
|
"z:tsc:build": "echo show tsc version and create declaration file && tsc -v && tsc -p ./tsconfig.types.json && echo declaration file generate complete"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@ant-design/icons": "^5.
|
|
53
|
-
"@ant-design/pro-components": "^2.4.
|
|
54
|
-
"@ant-design/pro-layout": "^7.
|
|
55
|
-
"@tanem/react-nprogress": "^5.0.
|
|
56
|
-
"@umijs/max": "^4.0.
|
|
57
|
-
"antd": "^5.
|
|
58
|
-
"antd-management-fast-common": "^2.1.
|
|
59
|
-
"antd-management-fast-component": "^2.1.
|
|
60
|
-
"axios": "^1.
|
|
52
|
+
"@ant-design/icons": "^5.1.2",
|
|
53
|
+
"@ant-design/pro-components": "^2.4.16",
|
|
54
|
+
"@ant-design/pro-layout": "^7.13.5",
|
|
55
|
+
"@tanem/react-nprogress": "^5.0.39",
|
|
56
|
+
"@umijs/max": "^4.0.69",
|
|
57
|
+
"antd": "^5.5.1",
|
|
58
|
+
"antd-management-fast-common": "^2.1.13",
|
|
59
|
+
"antd-management-fast-component": "^2.1.13",
|
|
60
|
+
"axios": "^1.4.0",
|
|
61
61
|
"classnames": "^2.3.2",
|
|
62
62
|
"dayjs": "^1.11.7",
|
|
63
|
-
"easy-soft-dva": "^3.6.
|
|
64
|
-
"easy-soft-utility": "^2.4.
|
|
65
|
-
"html-react-parser": "^3.0.
|
|
63
|
+
"easy-soft-dva": "^3.6.162",
|
|
64
|
+
"easy-soft-utility": "^2.4.133",
|
|
65
|
+
"html-react-parser": "^3.0.16",
|
|
66
66
|
"rc-animate": "^3.1.1",
|
|
67
67
|
"rc-queue-anim": "^2.0.0",
|
|
68
68
|
"react": "^18.2.0",
|
|
69
69
|
"react-dnd": "^16.0.1",
|
|
70
70
|
"react-dnd-html5-backend": "^16.0.1",
|
|
71
71
|
"react-dom": "^18.2.0",
|
|
72
|
-
"react-toastify": "^9.1.
|
|
72
|
+
"react-toastify": "^9.1.3",
|
|
73
|
+
"umi": "^4.0.69"
|
|
73
74
|
},
|
|
74
75
|
"devDependencies": {
|
|
75
|
-
"@babel/core": "^7.21.
|
|
76
|
-
"@babel/eslint-parser": "^7.21.
|
|
76
|
+
"@babel/core": "^7.21.8",
|
|
77
|
+
"@babel/eslint-parser": "^7.21.8",
|
|
77
78
|
"@babel/plugin-external-helpers": "^7.18.6",
|
|
78
79
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
79
80
|
"@babel/plugin-proposal-decorators": "^7.21.0",
|
|
80
81
|
"@babel/plugin-syntax-jsx": "^7.21.4",
|
|
81
82
|
"@babel/plugin-transform-runtime": "^7.21.4",
|
|
82
|
-
"@babel/preset-env": "^7.21.
|
|
83
|
+
"@babel/preset-env": "^7.21.5",
|
|
83
84
|
"@babel/preset-react": "^7.18.6",
|
|
84
|
-
"@babel/runtime": "^7.21.
|
|
85
|
-
"@commitlint/cli": "^17.
|
|
86
|
-
"@commitlint/config-conventional": "^17.
|
|
87
|
-
"@commitlint/config-lerna-scopes": "^17.
|
|
85
|
+
"@babel/runtime": "^7.21.5",
|
|
86
|
+
"@commitlint/cli": "^17.6.3",
|
|
87
|
+
"@commitlint/config-conventional": "^17.6.3",
|
|
88
|
+
"@commitlint/config-lerna-scopes": "^17.6.3",
|
|
88
89
|
"@commitlint/cz-commitlint": "^17.5.0",
|
|
89
90
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
|
|
90
91
|
"@rollup/plugin-alias": "^5.0.0",
|
|
91
92
|
"@rollup/plugin-babel": "6.0.3",
|
|
92
93
|
"@rollup/plugin-buble": "^1.0.2",
|
|
93
|
-
"@rollup/plugin-commonjs": "^
|
|
94
|
+
"@rollup/plugin-commonjs": "^25.0.0",
|
|
94
95
|
"@rollup/plugin-json": "^6.0.0",
|
|
95
96
|
"@rollup/plugin-node-resolve": "^15.0.2",
|
|
96
97
|
"@rollup/plugin-replace": "^5.0.2",
|
|
97
98
|
"@rollup/plugin-url": "^8.0.1",
|
|
98
|
-
"@svgr/rollup": "^
|
|
99
|
+
"@svgr/rollup": "^8.0.1",
|
|
99
100
|
"@types/fs-extra": "^11.0.1",
|
|
100
|
-
"@types/jest": "^29.5.
|
|
101
|
-
"@types/lodash": "^4.14.
|
|
101
|
+
"@types/jest": "^29.5.1",
|
|
102
|
+
"@types/lodash": "^4.14.194",
|
|
102
103
|
"@types/lodash.isequal": "^4.5.6",
|
|
103
|
-
"@types/node": "^
|
|
104
|
-
"@types/react": "^18.
|
|
105
|
-
"@types/react-dom": "^18.
|
|
106
|
-
"@types/shelljs": "^0.8.
|
|
107
|
-
"@typescript-eslint/parser": "^5.
|
|
104
|
+
"@types/node": "^20.2.3",
|
|
105
|
+
"@types/react": "^18.2.7",
|
|
106
|
+
"@types/react-dom": "^18.2.4",
|
|
107
|
+
"@types/shelljs": "^0.8.12",
|
|
108
|
+
"@typescript-eslint/parser": "^5.59.7",
|
|
108
109
|
"autoprefixer": "^10.4.14",
|
|
109
110
|
"commitizen": "^4.3.0",
|
|
110
111
|
"conventional-changelog-conventionalcommits": "^5.0.0",
|
|
111
112
|
"cross-env": "^7.0.3",
|
|
112
|
-
"cssnano": "^6.0.
|
|
113
|
-
"documentation": "^14.0.
|
|
114
|
-
"easy-soft-develop": "^2.
|
|
115
|
-
"eslint": "^8.
|
|
113
|
+
"cssnano": "^6.0.1",
|
|
114
|
+
"documentation": "^14.0.2",
|
|
115
|
+
"easy-soft-develop": "^2.1.4",
|
|
116
|
+
"eslint": "^8.41.0",
|
|
116
117
|
"eslint-config-airbnb": "^19.0.4",
|
|
117
118
|
"eslint-config-airbnb-typescript": "^17.0.0",
|
|
118
119
|
"eslint-config-prettier": "^8.8.0",
|
|
@@ -127,17 +128,17 @@
|
|
|
127
128
|
"eslint-plugin-react": "^7.32.2",
|
|
128
129
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
129
130
|
"eslint-plugin-simple-import-sort": "^10.0.0",
|
|
130
|
-
"eslint-plugin-unicorn": "^
|
|
131
|
+
"eslint-plugin-unicorn": "^47.0.0",
|
|
131
132
|
"husky": "^8.0.3",
|
|
132
133
|
"jest": "^29.5.0",
|
|
133
|
-
"lint-staged": "^13.2.
|
|
134
|
-
"npm-check-updates": "^16.10.
|
|
135
|
-
"prettier": "^2.8.
|
|
136
|
-
"prettier-plugin-organize-imports": "^3",
|
|
137
|
-
"prettier-plugin-packagejson": "^2",
|
|
134
|
+
"lint-staged": "^13.2.2",
|
|
135
|
+
"npm-check-updates": "^16.10.12",
|
|
136
|
+
"prettier": "^2.8.8",
|
|
137
|
+
"prettier-plugin-organize-imports": "^3.2.2",
|
|
138
|
+
"prettier-plugin-packagejson": "^2.4.3",
|
|
138
139
|
"prop-types": "^15.8.1",
|
|
139
|
-
"rimraf": "^5.0.
|
|
140
|
-
"rollup": "^3.
|
|
140
|
+
"rimraf": "^5.0.1",
|
|
141
|
+
"rollup": "^3.23.0",
|
|
141
142
|
"rollup-plugin-copy": "^3.4.0",
|
|
142
143
|
"rollup-plugin-dts": "^5.3.0",
|
|
143
144
|
"rollup-plugin-livereload": "^2.0.5",
|
|
@@ -146,10 +147,10 @@
|
|
|
146
147
|
"rollup-plugin-serve": "^2.0.2",
|
|
147
148
|
"rollup-plugin-terser": "^7.0.2",
|
|
148
149
|
"rollup-plugin-typescript2": "^0.34.1",
|
|
149
|
-
"stylelint": "^15.
|
|
150
|
+
"stylelint": "^15.6.2",
|
|
150
151
|
"stylelint-config-css-modules": "^4.2.0",
|
|
151
152
|
"stylelint-config-prettier": "^9.0.5",
|
|
152
|
-
"stylelint-config-standard": "^
|
|
153
|
+
"stylelint-config-standard": "^33.0.0",
|
|
153
154
|
"stylelint-declaration-block-no-ignored-properties": "^2.7.0",
|
|
154
155
|
"typescript": "^5.0.4"
|
|
155
156
|
}
|