antd-management-fast-framework 1.12.83 → 1.12.84

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.
@@ -3190,6 +3190,11 @@ function buildColumnItem(_ref52) {
3190
3190
  }
3191
3191
 
3192
3192
  var operateConfig = d.configBuilder(value, record, index);
3193
+
3194
+ if ((operateConfig || null) == null) {
3195
+ return null;
3196
+ }
3197
+
3193
3198
  return buildDropdown(operateConfig);
3194
3199
  }
3195
3200
 
@@ -213,7 +213,7 @@ declare class ListBase extends AuthorizationWrapper {
213
213
  renderContentArea: () => JSX.Element;
214
214
  establishPageContentLayoutSiderConfig: () => {};
215
215
  establishPageContentLayoutConfig: () => {};
216
- establishListItemDropdownConfig: (record: any) => {};
216
+ establishListItemDropdownConfig: (record: any) => null;
217
217
  renderPageContent: () => JSX.Element;
218
218
  renderPageBody: () => JSX.Element;
219
219
  renderFurther(): JSX.Element;
@@ -277,7 +277,7 @@ var ListBase = /*#__PURE__*/function (_AuthorizationWrapper) {
277
277
 
278
278
  _this.buildColumnFromWrapper = function () {
279
279
  var list = _this.getColumnWrapper() || [];
280
- return _this.buildColumnList([].concat(_toConsumableArray(list), _toConsumableArray(_this.columnOperateVisible ? [{
280
+ return _this.buildColumnList([].concat(_toConsumableArray(list), _toConsumableArray(_this.columnOperateVisible && (0, _tools.isObject)() ? [{
281
281
  dataTarget: _constants.formNameCollection.customOperate,
282
282
  width: _this.columnOperateWidth,
283
283
  fixed: _this.columnOperateFixed,
@@ -1402,7 +1402,7 @@ var ListBase = /*#__PURE__*/function (_AuthorizationWrapper) {
1402
1402
  };
1403
1403
 
1404
1404
  _this.establishListItemDropdownConfig = function (record) {
1405
- return {};
1405
+ return null;
1406
1406
  };
1407
1407
 
1408
1408
  _this.renderPageContent = function () {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "antd-management-fast-framework",
3
- "version": "1.12.83",
3
+ "version": "1.12.84",
4
4
  "description": "antd-management-fast-framework",
5
5
  "keywords": [
6
6
  "antd-management-fast-framework"
@@ -221,7 +221,7 @@
221
221
  "src/framework",
222
222
  "src/utils"
223
223
  ],
224
- "gitHead": "a195c02a8226578f4c09dd510d9c27637eed15b2",
224
+ "gitHead": "5c53d7afb8c36aac0601178abe9003cf9b29f278",
225
225
  "gitHooks": {
226
226
  "pre-commit": "lint-staged"
227
227
  }