@kdcloudjs/table 1.1.6-canary.1 → 1.1.6-canary.2
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/@kdcloudjs/table.css +1 -1
- package/dist/@kdcloudjs/table.js +2 -2
- package/dist/@kdcloudjs/table.js.map +1 -1
- package/dist/@kdcloudjs/table.min.css +1 -1
- package/dist/@kdcloudjs/table.min.js +2 -2
- package/dist/@kdcloudjs/table.min.js.map +1 -1
- package/es/table/pipeline/features/autoFill.js +1 -1
- package/lib/table/pipeline/features/autoFill.js +1 -1
- package/package.json +1 -1
package/dist/@kdcloudjs/table.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* @kdcloudjs/table v1.1.
|
|
3
|
+
* @kdcloudjs/table v1.1.6-canary.1
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2020-present, Kingdee, Inc.
|
|
6
6
|
* All rights reserved.
|
|
@@ -5097,7 +5097,7 @@ function getColumnWidthSum(pipeline) {
|
|
|
5097
5097
|
|
|
5098
5098
|
if (Object(_utils__WEBPACK_IMPORTED_MODULE_14__["isLeafNode"])(col) && code !== FILL_COLUMN_CODE) {
|
|
5099
5099
|
var resizeColumn = pipeline.getFeatureOptions(_columnResizeWidth__WEBPACK_IMPORTED_MODULE_16__["COLUMN_SIZE_KEY"]);
|
|
5100
|
-
return acc + (resizeColumn && resizeColumn[code]
|
|
5100
|
+
return acc + (resizeColumn && resizeColumn[code] || width);
|
|
5101
5101
|
} else {
|
|
5102
5102
|
return acc + dfs(col.children);
|
|
5103
5103
|
}
|