antd-management-fast-framework 2.11.180 → 2.11.181
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/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;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "antd-management-fast-framework",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.181",
|
|
4
4
|
"description": "antd-management-fast-framework",
|
|
5
5
|
"homepage": "https://github.com/kityandhero/antd-management-fast-framework#readme",
|
|
6
6
|
"license": "ISC",
|
|
@@ -51,15 +51,15 @@
|
|
|
51
51
|
"@ant-design/icons": "^5.3.7",
|
|
52
52
|
"@ant-design/pro-components": "^2.7.10",
|
|
53
53
|
"@tanem/react-nprogress": "^5.0.51",
|
|
54
|
-
"@umijs/max": "^4.2.
|
|
55
|
-
"antd": "^5.18.
|
|
54
|
+
"@umijs/max": "^4.2.13",
|
|
55
|
+
"antd": "^5.18.3",
|
|
56
56
|
"antd-management-fast-common": "workspace:*",
|
|
57
57
|
"antd-management-fast-component": "workspace:*",
|
|
58
58
|
"axios": "^1.7.2",
|
|
59
59
|
"classnames": "^2.5.1",
|
|
60
60
|
"dayjs": "^1.11.11",
|
|
61
|
-
"easy-soft-dva": "^3.10.
|
|
62
|
-
"easy-soft-utility": "^2.8.
|
|
61
|
+
"easy-soft-dva": "^3.10.49",
|
|
62
|
+
"easy-soft-utility": "^2.8.52",
|
|
63
63
|
"html-react-parser": "^5.1.10",
|
|
64
64
|
"rc-animate": "^3.1.1",
|
|
65
65
|
"rc-queue-anim": "^2.0.0",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"react-dnd": "^16.0.1",
|
|
68
68
|
"react-dnd-html5-backend": "^16.0.1",
|
|
69
69
|
"react-dom": "^18.3.1",
|
|
70
|
-
"umi": "^4.2.
|
|
70
|
+
"umi": "^4.2.13"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
73
|
"@babel/core": "^7.24.7",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"@babel/preset-env": "^7.24.7",
|
|
83
83
|
"@babel/preset-react": "^7.24.7",
|
|
84
84
|
"@babel/runtime": "^7.24.7",
|
|
85
|
-
"@changesets/cli": "^2.27.
|
|
85
|
+
"@changesets/cli": "^2.27.6",
|
|
86
86
|
"@commitlint/cli": "^19.3.0",
|
|
87
87
|
"@commitlint/config-conventional": "^19.2.2",
|
|
88
88
|
"@commitlint/config-pnpm-scopes": "^19.1.0",
|
|
@@ -101,20 +101,20 @@
|
|
|
101
101
|
"@types/jest": "^29.5.12",
|
|
102
102
|
"@types/lodash": "^4.17.5",
|
|
103
103
|
"@types/lodash.isequal": "^4.5.8",
|
|
104
|
-
"@types/node": "^20.14.
|
|
104
|
+
"@types/node": "^20.14.8",
|
|
105
105
|
"@types/react": "^18.3.3",
|
|
106
106
|
"@types/react-dom": "^18.3.0",
|
|
107
107
|
"@types/shelljs": "^0.8.15",
|
|
108
|
-
"@typescript-eslint/parser": "^7.13.
|
|
108
|
+
"@typescript-eslint/parser": "^7.13.1",
|
|
109
109
|
"autoprefixer": "^10.4.19",
|
|
110
110
|
"babel-jest": "^29.7.0",
|
|
111
111
|
"commitizen": "^4.3.0",
|
|
112
112
|
"conventional-changelog-conventionalcommits": "^8.0.0",
|
|
113
113
|
"cross-env": "^7.0.3",
|
|
114
|
-
"cssnano": "^7.0.
|
|
114
|
+
"cssnano": "^7.0.3",
|
|
115
115
|
"cz-git": "^1.9.3",
|
|
116
116
|
"docdash": "^2.0.2",
|
|
117
|
-
"easy-soft-develop": "^2.1.
|
|
117
|
+
"easy-soft-develop": "^2.1.192",
|
|
118
118
|
"eslint": "^8.57.0",
|
|
119
119
|
"eslint-config-airbnb": "^19.0.4",
|
|
120
120
|
"eslint-config-airbnb-typescript": "^18.0.0",
|
|
@@ -124,10 +124,10 @@
|
|
|
124
124
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
125
125
|
"eslint-plugin-import": "^2.29.1",
|
|
126
126
|
"eslint-plugin-jest": "^28.6.0",
|
|
127
|
-
"eslint-plugin-jsx-a11y": "^6.
|
|
127
|
+
"eslint-plugin-jsx-a11y": "^6.9.0",
|
|
128
128
|
"eslint-plugin-prettier": "^5.1.3",
|
|
129
129
|
"eslint-plugin-promise": "^6.2.0",
|
|
130
|
-
"eslint-plugin-react": "^7.34.
|
|
130
|
+
"eslint-plugin-react": "^7.34.3",
|
|
131
131
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
132
132
|
"eslint-plugin-simple-import-sort": "^12.1.0",
|
|
133
133
|
"eslint-plugin-unicorn": "^52.0.0",
|
|
@@ -140,6 +140,7 @@
|
|
|
140
140
|
"prettier-plugin-organize-imports": "^3.2.4",
|
|
141
141
|
"prettier-plugin-packagejson": "^2.5.0",
|
|
142
142
|
"prop-types": "^15.8.1",
|
|
143
|
+
"react-refresh": "0.14.2",
|
|
143
144
|
"rimraf": "^5.0.7",
|
|
144
145
|
"rollup": "^4.18.0",
|
|
145
146
|
"rollup-plugin-copy": "^3.5.0",
|
|
@@ -152,9 +153,9 @@
|
|
|
152
153
|
"stylelint": "^16.6.1",
|
|
153
154
|
"stylelint-config-css-modules": "^4.4.0",
|
|
154
155
|
"stylelint-config-prettier": "^9.0.5",
|
|
155
|
-
"stylelint-config-standard": "^36.0.
|
|
156
|
+
"stylelint-config-standard": "^36.0.1",
|
|
156
157
|
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
|
|
157
158
|
"stylelint-order": "^6.0.4",
|
|
158
|
-
"typescript": "^5.
|
|
159
|
+
"typescript": "^5.5.2"
|
|
159
160
|
}
|
|
160
161
|
}
|