antd-management-fast-framework 1.12.89 → 1.12.90
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/framework/DataListView/Base/index.d.ts +1 -0
- package/es/framework/DataListView/Base/index.js +3 -5
- package/es/framework/DataMultiPageView/MultiPageDrawer/index.js +1 -2
- package/es/framework/DataMultiPageView/MultiPageSelectDrawer/index.js +1 -0
- package/es/framework/DataSinglePageView/SinglePageDrawer/index.js +1 -2
- package/es/framework/DataSinglePageView/SinglePageSelectDrawer/index.js +1 -0
- package/package.json +2 -2
|
@@ -176,6 +176,7 @@ var ListBase = /*#__PURE__*/function (_AuthorizationWrapper) {
|
|
|
176
176
|
_this.columnOperateVisible = true;
|
|
177
177
|
_this.columnOperateWidth = 106;
|
|
178
178
|
_this.columnOperateFixed = 'right';
|
|
179
|
+
_this.showListViewItemActionSelect = false;
|
|
179
180
|
|
|
180
181
|
_this.afterDidMount = function () {
|
|
181
182
|
var pageSize = _this.state.pageSize;
|
|
@@ -1122,13 +1123,11 @@ var ListBase = /*#__PURE__*/function (_AuthorizationWrapper) {
|
|
|
1122
1123
|
};
|
|
1123
1124
|
|
|
1124
1125
|
_this.renderListViewItemActions = function (record, index) {
|
|
1125
|
-
var showListViewItemActionSelect = _this.state.showListViewItemActionSelect;
|
|
1126
|
-
|
|
1127
1126
|
var actionOthers = _this.renderListViewItemActionOthers(record, index);
|
|
1128
1127
|
|
|
1129
1128
|
var actionSelect = null;
|
|
1130
1129
|
|
|
1131
|
-
if (showListViewItemActionSelect || false) {
|
|
1130
|
+
if (_this.showListViewItemActionSelect || false) {
|
|
1132
1131
|
actionSelect = _this.renderListViewItemActionSelect(record, index);
|
|
1133
1132
|
}
|
|
1134
1133
|
|
|
@@ -1508,8 +1507,7 @@ var ListBase = /*#__PURE__*/function (_AuthorizationWrapper) {
|
|
|
1508
1507
|
avatarImageLoadResult: _DecorateAvatar.avatarImageLoadResultCollection.wait,
|
|
1509
1508
|
showPageHeaderAvatar: false,
|
|
1510
1509
|
tableSize: _constants.listViewConfig.tableSize.middle,
|
|
1511
|
-
counterSetColumnsOtherConfig: 0
|
|
1512
|
-
showListViewItemActionSelect: false
|
|
1510
|
+
counterSetColumnsOtherConfig: 0
|
|
1513
1511
|
});
|
|
1514
1512
|
return _this;
|
|
1515
1513
|
}
|
|
@@ -452,8 +452,7 @@ var MultiPageDrawer = /*#__PURE__*/function (_MultiPage) {
|
|
|
452
452
|
_this.state = _objectSpread(_objectSpread({}, s), {
|
|
453
453
|
visible: false,
|
|
454
454
|
reloadAnimalShow: false,
|
|
455
|
-
listViewMode: _constants.listViewConfig.viewMode.table
|
|
456
|
-
showListViewItemActionSelect: true
|
|
455
|
+
listViewMode: _constants.listViewConfig.viewMode.table
|
|
457
456
|
});
|
|
458
457
|
return _this;
|
|
459
458
|
} // eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
@@ -62,6 +62,7 @@ var MultiPageSelectDrawer = /*#__PURE__*/function (_MultiPageDrawer) {
|
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
_this = _super.call.apply(_super, [this].concat(args));
|
|
65
|
+
_this.showListViewItemActionSelect = true;
|
|
65
66
|
|
|
66
67
|
_this.selectRecord = function (_ref) {
|
|
67
68
|
var handleData = _ref.handleData;
|
|
@@ -430,8 +430,7 @@ var SinglePageDrawer = /*#__PURE__*/function (_SinglePage) {
|
|
|
430
430
|
_this.state = _objectSpread(_objectSpread({}, s), {
|
|
431
431
|
visible: false,
|
|
432
432
|
reloadAnimalShow: false,
|
|
433
|
-
listViewMode: _constants.listViewConfig.viewMode.table
|
|
434
|
-
showListViewItemActionSelect: true
|
|
433
|
+
listViewMode: _constants.listViewConfig.viewMode.table
|
|
435
434
|
});
|
|
436
435
|
return _this;
|
|
437
436
|
} // eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
@@ -62,6 +62,7 @@ var SinglePageSelectDrawer = /*#__PURE__*/function (_SinglePageDrawer) {
|
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
_this = _super.call.apply(_super, [this].concat(args));
|
|
65
|
+
_this.showListViewItemActionSelect = true;
|
|
65
66
|
|
|
66
67
|
_this.selectRecord = function (_ref) {
|
|
67
68
|
var handleData = _ref.handleData;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "antd-management-fast-framework",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.90",
|
|
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": "
|
|
224
|
+
"gitHead": "002d41a8383a0a427d80e5110c2f2342b3560211",
|
|
225
225
|
"gitHooks": {
|
|
226
226
|
"pre-commit": "lint-staged"
|
|
227
227
|
}
|