@kdcloudjs/kdesign 1.7.7 → 1.7.8

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/dist/kdesign.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * @kdcloudjs/kdesign v1.7.6
3
+ * @kdcloudjs/kdesign v1.7.7
4
4
  *
5
5
  * Copyright 2020-present, Kingdee, Inc.
6
6
  * All rights reserved.
@@ -46413,7 +46413,7 @@ function getColumnWidthSum(pipeline) {
46413
46413
 
46414
46414
  if (Object(_utils__WEBPACK_IMPORTED_MODULE_7__["isLeafNode"])(col) && code !== FILL_COLUMN_CODE) {
46415
46415
  var resizeColumn = pipeline.getFeatureOptions(_columnResizeWidth__WEBPACK_IMPORTED_MODULE_9__["COLUMN_SIZE_KEY"]);
46416
- return acc + (resizeColumn && resizeColumn[code]) || width;
46416
+ return acc + (resizeColumn && resizeColumn[code] || width);
46417
46417
  } else {
46418
46418
  return acc + dfs(col.children);
46419
46419
  }