@lemon-fe/kits 1.4.23 → 1.4.25-alpha.0
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.
|
@@ -47,6 +47,8 @@ interface Props<RecordType extends Record<string, any> = Record<string, any>, Re
|
|
|
47
47
|
* 主要功能以handle里中的skipWarning实现
|
|
48
48
|
* 使用时,注意配置process中的skipWarning
|
|
49
49
|
* 中间不配置skipWarning的步骤会停下来
|
|
50
|
+
* 会重新执行当前步骤,并继续执行
|
|
51
|
+
* 注意当前步骤调取接口的幂等性
|
|
50
52
|
**/
|
|
51
53
|
executeUntilBlocked: () => void;
|
|
52
54
|
}) => ReactNode);
|
|
@@ -97,7 +97,7 @@ var BatchOperate = /*#__PURE__*/function (_Component) {
|
|
|
97
97
|
results.forEach(function (result, id) {
|
|
98
98
|
if (!result.loading && result.error && result.stepIdx !== undefined) {
|
|
99
99
|
var stepIdx = result.stepIdx;
|
|
100
|
-
_this.processNode(id, stepIdx
|
|
100
|
+
_this.processNode(id, stepIdx, params, undefined, true);
|
|
101
101
|
}
|
|
102
102
|
});
|
|
103
103
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lemon-fe/kits",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.25-alpha.0",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"homepage": "",
|
|
6
6
|
"license": "ISC",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@ant-design/icons": "^4.7.0",
|
|
27
|
-
"@lemon-fe/components": "^1.4.
|
|
27
|
+
"@lemon-fe/components": "^1.4.24",
|
|
28
28
|
"@lemon-fe/hooks": "^1.4.15",
|
|
29
29
|
"@lemon-fe/utils": "^1.4.15",
|
|
30
30
|
"ag-grid-community": "29.2.0",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"publishConfig": {
|
|
48
48
|
"registry": "https://registry.npmjs.org"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "ba1151d71ff6345da01beb54ee455510ba4dc2e8"
|
|
51
51
|
}
|