@lemon-fe/components 0.1.83 → 0.1.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.
- package/es/BaseTable/index.js +4 -2
- package/es/Filter/index.js +1 -1
- package/package.json +2 -2
package/es/BaseTable/index.js
CHANGED
|
@@ -316,9 +316,11 @@ function BaseTable(props) {
|
|
|
316
316
|
var newColumns = traverse(columns);
|
|
317
317
|
|
|
318
318
|
if (isFixedLayout && !hasAutoWidthCol) {
|
|
319
|
-
|
|
319
|
+
var emptyCol = {
|
|
320
320
|
title: ''
|
|
321
|
-
}
|
|
321
|
+
};
|
|
322
|
+
newColumns.push(emptyCol);
|
|
323
|
+
flattenCols.push(emptyCol);
|
|
322
324
|
}
|
|
323
325
|
|
|
324
326
|
return [newColumns, flattenCols];
|
package/es/Filter/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lemon-fe/components",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.84",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "鲁盛杰 <lusj@cnlemon.net>",
|
|
6
6
|
"homepage": "",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"react": "^17.0.2",
|
|
45
45
|
"react-dom": "^17.0.2"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "ae233db2d69aafb8ea66f3df49e8be7f4820b7ad"
|
|
48
48
|
}
|