antd-management-fast-framework 1.12.3 → 1.12.4
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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [1.12.4](https://github.com/kityandhero/antd-management-fast-framework/compare/antd-management-fast-framework@1.12.3...antd-management-fast-framework@1.12.4) (2021-12-24)
|
|
6
|
+
|
|
7
|
+
**Note:** Version bump only for package antd-management-fast-framework
|
|
8
|
+
|
|
5
9
|
### [1.12.3](https://github.com/kityandhero/antd-management-fast-framework/compare/antd-management-fast-framework@1.12.2...antd-management-fast-framework@1.12.3) (2021-12-24)
|
|
6
10
|
|
|
7
11
|
**Note:** Version bump only for package antd-management-fast-framework
|
|
@@ -1097,7 +1097,7 @@ var ListBase = /*#__PURE__*/function (_AuthorizationWrapper) {
|
|
|
1097
1097
|
|
|
1098
1098
|
var actionOthers = _this.renderListViewItemActionOthers(record, index);
|
|
1099
1099
|
|
|
1100
|
-
var actionSelect =
|
|
1100
|
+
var actionSelect = null;
|
|
1101
1101
|
|
|
1102
1102
|
if (showListViewItemActionSelect || false) {
|
|
1103
1103
|
actionSelect = _this.renderListViewItemActionSelect(record, index);
|
|
@@ -38,6 +38,14 @@ export function pretreatmentRequestParams(params: any, customHandle: any): {};
|
|
|
38
38
|
* @returns
|
|
39
39
|
*/
|
|
40
40
|
export function handleCommonDataAssist(state: any, action: any, callback?: any): any;
|
|
41
|
+
/**
|
|
42
|
+
* handleListDataAssist
|
|
43
|
+
* @param {*} state
|
|
44
|
+
* @param {*} action
|
|
45
|
+
* @param {*} pretreatment
|
|
46
|
+
* @param {*} callback
|
|
47
|
+
* @returns
|
|
48
|
+
*/
|
|
41
49
|
export function handleListDataAssist(state: any, action: any, pretreatment?: any, callback?: any): any;
|
|
42
50
|
export function handlePageListDataAssist(state: any, action: any, pretreatment?: any, callback?: any): any;
|
|
43
51
|
/**
|
|
@@ -323,6 +323,15 @@ function handleCommonDataAssist(state, action) {
|
|
|
323
323
|
fromRemote: true
|
|
324
324
|
});
|
|
325
325
|
}
|
|
326
|
+
/**
|
|
327
|
+
* handleListDataAssist
|
|
328
|
+
* @param {*} state
|
|
329
|
+
* @param {*} action
|
|
330
|
+
* @param {*} pretreatment
|
|
331
|
+
* @param {*} callback
|
|
332
|
+
* @returns
|
|
333
|
+
*/
|
|
334
|
+
|
|
326
335
|
|
|
327
336
|
function handleListDataAssist(state, action) {
|
|
328
337
|
var pretreatment = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
|