@kdcloudjs/table 1.2.0-canary.12 → 1.2.0-canary.13

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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * @kdcloudjs/table v1.2.0-canary.11
3
+ * @kdcloudjs/table v1.2.0-canary.12
4
4
  *
5
5
  * Copyright 2020-present, Kingdee, Inc.
6
6
  * All rights reserved.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * @kdcloudjs/table v1.2.0-canary.11
3
+ * @kdcloudjs/table v1.2.0-canary.12
4
4
  *
5
5
  * Copyright 2020-present, Kingdee, Inc.
6
6
  * All rights reserved.
@@ -3950,7 +3950,8 @@ var BaseTable = /*#__PURE__*/function (_React$Component) {
3950
3950
  }, /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_27___default.a.createElement("div", {
3951
3951
  className: classnames__WEBPACK_IMPORTED_MODULE_26___default()(_styles__WEBPACK_IMPORTED_MODULE_38__["Classes"].horizontalScrollLeftSpacer),
3952
3952
  style: {
3953
- width: info.leftLockTotalWidth
3953
+ width: info.leftLockTotalWidth,
3954
+ display: hasStickyScroll && hasScroll ? 'block' : 'none'
3954
3955
  }
3955
3956
  }), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_27___default.a.createElement("div", {
3956
3957
  className: classnames__WEBPACK_IMPORTED_MODULE_26___default()(_styles__WEBPACK_IMPORTED_MODULE_38__["Classes"].stickyScroll),
@@ -3963,7 +3964,8 @@ var BaseTable = /*#__PURE__*/function (_React$Component) {
3963
3964
  })), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_27___default.a.createElement("div", {
3964
3965
  className: classnames__WEBPACK_IMPORTED_MODULE_26___default()(_styles__WEBPACK_IMPORTED_MODULE_38__["Classes"].horizontalScrollRightSpacer),
3965
3966
  style: {
3966
- width: info.rightLockTotalWidth
3967
+ width: info.rightLockTotalWidth,
3968
+ display: hasStickyScroll && hasScroll ? 'block' : 'none'
3967
3969
  }
3968
3970
  }));
3969
3971
  }
@@ -6092,7 +6094,7 @@ function filter() {
6092
6094
  var colFilterIcon = (_col$features$filterI = (_col$features3 = col.features) === null || _col$features3 === void 0 ? void 0 : _col$features3.filterIcon) !== null && _col$features$filterI !== void 0 ? _col$features$filterI : filterIcon;
6093
6095
 
6094
6096
  var _Filter = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_17___default.a.createElement(_filter__WEBPACK_IMPORTED_MODULE_21__["Filter"], {
6095
- key: "filter",
6097
+ key: "".concat(col.code, "_filter"),
6096
6098
  FilterPanelContent: filterPanel,
6097
6099
  filterIcon: colFilterIcon,
6098
6100
  filterModel: inputFiltersMap.get(col.code),